| Conditions | 3 |
| Paths | 3 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | public function toContainerSemanticData( TitleValue $subjectPage ): ContainerSemanticData { |
||
| 26 | $container = $this->newContainerSemanticData( $subjectPage ); |
||
| 27 | |||
| 28 | foreach ( $this->values as $propertyName => $dataItems ) { |
||
| 29 | foreach ( $dataItems as $dataItem ) { |
||
| 30 | $container->addPropertyObjectValue( |
||
| 31 | new DIProperty( $propertyName ), |
||
| 32 | $dataItem |
||
| 33 | ); |
||
| 34 | } |
||
| 35 | } |
||
| 36 | |||
| 37 | return $container; |
||
| 38 | } |
||
| 39 | |||
| 60 |