Conditions | 3 |
Paths | 3 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php |
||
17 | private function getDisplayValues( Subject $subject ) { |
||
18 | foreach ( $subject->getPropertyValueCollections() as $propertyValues ) { |
||
19 | foreach ( $propertyValues->getDataItems() as $dataItem ) { |
||
20 | yield $this->getDisplayValue( $propertyValues->getPrintRequest(), $dataItem ); |
||
21 | } |
||
22 | } |
||
23 | } |
||
24 | |||
41 |