| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 38 | protected function getDifferentTypesAndLocations() |
||
| 39 | { |
||
| 40 | $typeLocations = []; |
||
| 41 | foreach ($this->indexRepository->findDifferentTypesAndLocations() as $entry) { |
||
| 42 | /** @var $entry Index */ |
||
| 43 | $typeLocations[$entry->getForeignTable()][$entry->getPid()] = $entry->getConfiguration()['uniqueRegisterKey']; |
||
| 44 | } |
||
| 45 | return $typeLocations; |
||
| 46 | } |
||
| 47 | } |
||
| 48 |