Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
40 | 2 | public function extractFields($entityClass) : array |
|
41 | { |
||
42 | 2 | $this->currentMetadata = $this->manager->getClassMetadata($entityClass); |
|
43 | |||
44 | 2 | return array_map(function ($item) { |
|
45 | 2 | return Dictionary::getOperatorsFromDoctrineType($item['type']); |
|
46 | 2 | }, $this->currentMetadata->fieldMappings); |
|
|
|||
47 | } |
||
67 |