| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | public function boot(array $env) |
||
| 13 | { |
||
| 14 | $dispatcher = new Dispatcher(); |
||
| 15 | |||
| 16 | $dispatcher->setRequest($this->getServerRequest($env['site']['url'])); |
||
| 17 | $dispatcher->setRouterConfig($env['router']); |
||
| 18 | $dispatcher->setViewEngineConfig($env['viewEngine']); |
||
| 19 | $dispatcher->setViewResolver($env['viewResolver']); |
||
| 20 | |||
| 21 | $dispatcher->dispatch(); |
||
| 22 | } |
||
| 23 | |||
| 44 |