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