1 | <?php |
||
8 | class RouteServiceProvider extends AbstractServiceProvider |
||
9 | { |
||
10 | protected $provides = [ |
||
11 | 'route', |
||
12 | ]; |
||
13 | |||
14 | /** |
||
15 | * Use the register method to register items with the container via the |
||
16 | * protected $this->container property or the `getContainer` method |
||
17 | * from the ContainerAwareTrait. |
||
18 | * |
||
19 | * @return void |
||
20 | */ |
||
21 | public function register() |
||
27 | } |
||
28 |