<?php
namespace App\Core;
class View
{
protected $output = '';
protected $lang;
public function __construct()
{
global $siteLabels;
$this->lang = $siteLabels;
}
/**
* Return rendered view
*
* @return mixed
*/
public function render()
{
return $this->output;
}
}