Total Complexity | 1 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class RouteCollection extends Router |
||
14 | { |
||
15 | /** |
||
16 | * Namespace applied to all class-based routes. |
||
17 | * |
||
18 | * @var string |
||
19 | */ |
||
20 | protected $namespace = 'App\Example'; |
||
21 | |||
22 | /** |
||
23 | * Returns an array of route instances. |
||
24 | * |
||
25 | * @return \Zapheus\Routing\Route[] |
||
26 | */ |
||
27 | 9 | public function routes() |
|
40 |