| Total Complexity | 2 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class ServiceProvider extends BaseServiceProvider |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * All of the container singletons that should be registered. |
||
| 15 | * |
||
| 16 | * @var array |
||
| 17 | */ |
||
| 18 | public $singletons = [ |
||
| 19 | ElasticsearchDslContract::class => ElasticsearchDsl::class |
||
| 20 | ]; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Bootstrap the application events. |
||
| 24 | * |
||
| 25 | * @return void |
||
| 26 | */ |
||
| 27 | 61 | public function boot() |
|
| 36 | 61 | } |
|
| 37 | |||
| 38 | /** |
||
| 39 | * Register bindings in the container. |
||
| 40 | * |
||
| 41 | * @return void |
||
| 42 | */ |
||
| 43 | 61 | public function register() |
|
| 50 |