Этот коммит содержится в:
2019-11-05 01:14:53 +03:00
Коммит 499374305a
29 изменённых файлов: 1004 добавлений и 0 удалений

13
src/views/DefaultView.php Обычный файл
Просмотреть файл

@@ -0,0 +1,13 @@
<?php
namespace MyApp\View;
use MyApp\Core\View;
class DefaultView extends View
{
public function index()
{
$this->setTitle('Index')->render('default/index');
}
}