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