| 1 | <?php |
||
| 9 | class LoadRoutesFromBinders implements RouteLoader |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var RouteBinder[] |
||
| 13 | */ |
||
| 14 | private $binders; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param RouteBinder ...$binders |
||
| 18 | */ |
||
| 19 | 5 | public function __construct(RouteBinder ...$binders) |
|
| 23 | |||
| 24 | /** |
||
| 25 | * @param Router $router |
||
| 26 | * |
||
| 27 | * @return Router |
||
| 28 | */ |
||
| 29 | 2 | public function loadRoutes(Router $router) : Router |
|
| 37 | } |
||
| 38 |