1 | <?php |
||
9 | class BigQueryServiceProvider extends ServiceProvider |
||
10 | { |
||
11 | /** |
||
12 | * Perform post-registration booting of services. |
||
13 | * |
||
14 | * @return void |
||
15 | */ |
||
16 | public function boot() |
||
17 | { |
||
18 | $this->publishes([ |
||
19 | __DIR__.'/config/bigquery.php' => config_path('bigquery.php'), |
||
20 | ]); |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * Register any package services. |
||
25 | * |
||
26 | * @return void |
||
27 | */ |
||
28 | public function register() |
||
42 | |||
43 | protected function guardAgainstInvalidConfiguration(array $bigQueryConfig = null) |
||
49 | } |
||
50 |