| Total Complexity | 7 |
| Total Lines | 48 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | final class ControllerFinder |
||
| 20 | { |
||
| 21 | private readonly LocatorInterface $locator; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param string $namespace Namespace dans lequel on recherche |
||
| 25 | */ |
||
| 26 | public function __construct(private readonly string $namespace) |
||
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @return list<string> |
||
| 33 | */ |
||
| 34 | public function find(): array |
||
| 69 |