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