1 | <?php |
||
9 | class Controller |
||
10 | { |
||
11 | /** @var View View The view object */ |
||
12 | public $View; |
||
13 | |||
14 | /** |
||
15 | * Construct the (base) controller. This happens when a real controller is constructed, like in |
||
16 | * the constructor of IndexController when it says: parent::__construct(); |
||
17 | */ |
||
18 | public function __construct() |
||
34 | } |
||
35 |