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