| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | 4 | public function __construct( |
|
| 36 | IndexCollection $indexCollection, |
||
| 37 | IndexBuilderInterface $indexBuilder, |
||
| 38 | MappingConverterInterface $mappingConverter |
||
| 39 | ) { |
||
| 40 | 4 | $this->indexCollection = $indexCollection; |
|
| 41 | 4 | $this->indexBuilder = $indexBuilder; |
|
| 42 | 4 | $this->mappingConverter = $mappingConverter; |
|
| 43 | 4 | } |
|
| 55 |