| 1 | <?php |
||
| 11 | class ServiceProvider extends AbstractServiceProvider |
||
| 12 | { |
||
| 13 | |||
| 14 | protected $provides = [ |
||
| 15 | Driver::class, |
||
| 16 | ModernDriver::class, |
||
| 17 | LegacyDriver::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 | } |
||
| 34 |