1 | <?php |
||
13 | class RouteServiceProvider extends AbstractServiceProvider |
||
14 | { |
||
15 | protected $provides = [ |
||
16 | Request::class, |
||
17 | Response::class |
||
18 | ]; |
||
19 | |||
20 | /** |
||
21 | * Use the register method to register items with the container via the |
||
22 | * protected $this->container property or the `getContainer` method |
||
23 | * from the ContainerAwareTrait. |
||
24 | * |
||
25 | * @return void |
||
26 | */ |
||
27 | public function register() |
||
33 | } |