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