| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | public function run() |
||
| 19 | { |
||
| 20 | 1 | $propertyList = $this->reflection->getProperties(); |
|
|
|
|||
| 21 | |||
| 22 | 1 | foreach ($propertyList as $propertyInfo) { |
|
| 23 | 1 | $parser = new PropertyParser($this->parserManager, $propertyInfo); |
|
| 24 | 1 | $parser->run(); |
|
| 25 | |||
| 26 | 1 | $this->addItem($propertyInfo->getName(), $parser); |
|
| 27 | } |
||
| 30 |