badping_nagios_better/src/views/DefaultView.php
2019-11-12 20:23:32 +03:00

16 строки
239 B
PHP

<?php
namespace MyApp\View;
use MyApp\Core\View;
class DefaultView extends View
{
public function index($tree): string
{
$this->{'tree'} = $tree;
return $this->setTitle('Home')->render('default/index');
}
}