##// END OF EJS Templates
verificado errores en controlador
verificado errores en controlador

File last commit:

r0:1
r14:15
Show More
ControllerBase.php
10 lines | 156 B | text/x-php | PhpLexer
<?php
abstract class ControllerBase {
protected $view;
function __construct()
{
$this->view = new View();
}
}
?>