16 строки
239 B
PHP
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');
|
|
}
|
|
}
|