Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
30 | public function __construct() |
||
31 | { |
||
32 | if (App::$Debug) { |
||
33 | App::$Debug->startMeasure(get_class($this)); |
||
34 | App::$Debug->bar->getCollector('messages')->info('Use controller: ' . get_class($this)); |
||
|
|||
35 | } |
||
36 | $this->lang = App::$Request->getLanguage(); |
||
37 | $this->request = App::$Request; |
||
38 | $this->response = App::$Response; |
||
39 | $this->view = App::$View; |
||
40 | $this->before(); |
||
41 | } |
||
58 |