| Total Complexity | 4 |
| Total Lines | 38 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | final class AutoRouteCollector |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @param string $namespace Namespace dans lequel on recherche |
||
| 21 | */ |
||
| 22 | public function __construct(private string $namespace, private string $defaultController, private string $defaultMethod) |
||
| 23 | { |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return array<int, array<int, string>> |
||
| 28 | * @phpstan-return list<list<string>> |
||
| 29 | */ |
||
| 30 | public function get(): array |
||
| 55 | } |
||
| 56 | } |
||
| 57 |