| Conditions | 3 |
| Paths | 3 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | public function boot() |
||
| 15 | { |
||
| 16 | $config = $this->app->get('apie.config'); |
||
| 17 | if ($config['disable-routes']) { |
||
| 18 | return; |
||
| 19 | } |
||
| 20 | if ($config['swagger-ui-test-page']) { |
||
| 21 | $this->loadRoutesFrom(__DIR__ . '/../../config/routes-openapi.php'); |
||
| 22 | } |
||
| 23 | $this->loadRoutesFrom(__DIR__ . '/../../config/routes.php'); |
||
| 24 | } |
||
| 50 |