php_engine/app/controller/MainController.php
2025-01-20 19:54:53 +03:00

21 lines
279 B
PHP

<?php
require_once __DIR__ . '/../view/View.php';
class MainController {
//todo: Написать actionIndex отображение главной
// страницы
public function actionNotFound(){
echo(View::render( [], '404.php' ));
}
}