| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | protected function getRoutes(): array |
||
| 19 | 76 | { |
|
| 20 | 76 | $path = appPath('api/routes'); |
|
| 21 | |||
| 22 | //app routes |
||
| 23 | $routes = [ |
||
| 24 | 76 | 'canvas' => Di::getDefault()->getConfig()->application->core->path . '/routes/api.php', |
|
| 25 | 76 | 'api' => $path . '/api.php', |
|
| 26 | ]; |
||
| 27 | |||
| 28 | 76 | return $routes; |
|
| 29 | } |
||
| 30 | } |
||
| 31 |