1 | <?php |
||
8 | class Oci8ServiceProvider extends ServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * Indicates if loading of the provider is deferred. |
||
12 | * |
||
13 | * @var bool |
||
14 | */ |
||
15 | protected $defer = false; |
||
16 | |||
17 | /** |
||
18 | * Boot Oci8 Provider |
||
19 | */ |
||
20 | public function boot() |
||
26 | |||
27 | /** |
||
28 | * Register the service provider. |
||
29 | * |
||
30 | * @return void |
||
31 | */ |
||
32 | public function register() |
||
64 | |||
65 | /** |
||
66 | * Get the services provided by the provider. |
||
67 | * |
||
68 | * @return string[] |
||
69 | */ |
||
70 | public function provides() |
||
74 | } |
||
75 |