| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 12 | public function boot(Application $app) |
||
| 13 | { |
||
| 14 | $app->setSiteConfig($this->getSiteConfig()); |
||
| 15 | $app->setErrorReporterConfig($this->getErrorReporterConfig()); |
||
| 16 | |||
| 17 | $app->setViewEngineConfig($this->getViewEngineConfig()); |
||
| 18 | $app->setViewResolver($this->getViewResolvers()); |
||
| 19 | |||
| 20 | $app->setDisplayError($this->getSiteConfig()['displayErrors']); |
||
| 21 | $app->registerErrorReporters(); |
||
| 22 | |||
| 23 | $app->setEventListener($this->getEventListener()); |
||
| 24 | $app->registerEventListener(); |
||
| 25 | |||
| 26 | $app->setRouterConfig($this->getRouterConfig()); |
||
| 27 | } |
||
| 28 | |||
| 59 |