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