1 | <?php |
||
11 | class DriverServiceProvider extends AbstractServiceProvider |
||
12 | { |
||
13 | protected $provides = [ |
||
14 | DriverManager::class, |
||
15 | ]; |
||
16 | |||
17 | private $discovery; |
||
18 | |||
19 | 1 | public function __construct(Discovery $discovery = null) |
|
23 | |||
24 | /** |
||
25 | * Use the register method to register items with the container via the |
||
26 | * protected $this->container property or the `getContainer` method |
||
27 | * from the ContainerAwareTrait. |
||
28 | * |
||
29 | * @return void |
||
30 | */ |
||
31 | public function register(): void |
||
51 | } |
||
52 |