| 1 | <?php  | 
            ||
| 9 | class PropertyValueCollections implements \IteratorAggregate { | 
            ||
| 10 | |||
| 11 | private $propertyValueCollections;  | 
            ||
| 12 | |||
| 13 | /**  | 
            ||
| 14 | * @param PropertyValueCollection[] $propertyValueCollections  | 
            ||
| 15 | */  | 
            ||
| 16 | 3 | 	public function __construct( array $propertyValueCollections ) { | 
            |
| 19 | |||
| 20 | /**  | 
            ||
| 21 | * @return PropertyValueCollection[]  | 
            ||
| 22 | */  | 
            ||
| 23 | 3 | 	public function toArray(): array { | 
            |
| 26 | |||
| 27 | 2 | 	public function getIterator(): Traversable { | 
            |
| 30 | |||
| 31 | }  | 
            ||
| 32 |