Total Complexity | 1 |
Total Lines | 21 |
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 | ElasticsearchMappingContract::class => ElasticsearchMapping::class |
||
20 | ]; |
||
21 | |||
22 | /** |
||
23 | * Register bindings in the container. |
||
24 | * |
||
25 | * @return void |
||
26 | */ |
||
27 | 32 | public function register() |
|
34 |