Conditions | 4 |
Paths | 4 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 4 |
Changes | 0 |
1 | <?php |
||
23 | 2 | private function getDisplayValues( Subject $subject ) { |
|
24 | 2 | foreach ( $subject->getPropertyValueCollections() as $propertyValues ) { |
|
25 | 2 | foreach ( $propertyValues->getDataItems() as $dataItem ) { |
|
26 | 2 | if ( !$this->isHiddenPrintRequest( $propertyValues->getPrintRequest() ) ) { |
|
27 | 2 | yield $this->getDisplayValue( $propertyValues->getPrintRequest(), $dataItem ); |
|
28 | } |
||
29 | } |
||
30 | } |
||
31 | 2 | } |
|
32 | |||
53 |