| Total Complexity | 2 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | final class RouterProvider extends ServiceProvider |
||
| 20 | { |
||
| 21 | private array $routes; |
||
| 22 | |||
| 23 | public function __construct(array $routes) |
||
| 24 | { |
||
| 25 | 8 | $this->routes = $routes; |
|
| 26 | } |
||
| 27 | 8 | ||
| 28 | /** |
||
| 29 | * @suppress PhanAccessMethodProtected |
||
| 30 | 8 | */ |
|
| 31 | public function register(Container $container): void |
||
| 46 | } |
||
| 47 | } |
||
| 48 |