Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
27 | public function init(ContainerInterface $container, string $templateEngine) |
||
28 | { |
||
29 | parent::init($container, $templateEngine); |
||
30 | |||
31 | $this->container()->get('debugbar')['time']->startMeasure('Controller', 'Controller'); |
||
32 | $this->setData($this->container()->config('title'), 'title'); |
||
33 | $this->setData($this->container(), 'container'); |
||
34 | $this->check(); |
||
35 | } |
||
36 | |||
46 |