mckaygerhard
be6445a6ae
* provide minimal instruction to start to work, adn minimal README also * fix guachi libraries to work with php8 also * fix the script to start a module, move or put missing files into docs as examples * send real http code, specially on 404 response if controllers are not present or error * fix index controller and not found logic model * provide default index and default ini configuration files
10 lines
154 B
PHP
10 lines
154 B
PHP
<?php
|
|
|
|
/*Controlador del modulo error 404*/
|
|
|
|
class notFound_controller extends controller {
|
|
public function execute() {
|
|
$this->model->show();
|
|
}
|
|
}
|