| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | class PageDataComponentMetadata |
||
| 22 | { |
||
| 23 | private array $pageDataResources; |
||
| 24 | private ArrayCollection $properties; |
||
| 25 | |||
| 26 | public function __construct(array $pageDataResources, ArrayCollection $properties) |
||
| 27 | { |
||
| 28 | $this->pageDataResources = $pageDataResources; |
||
| 29 | $this->properties = $properties; |
||
| 30 | } |
||
| 31 | |||
| 32 | public function getPageDataResources(): array |
||
| 33 | { |
||
| 34 | return $this->pageDataResources; |
||
| 35 | } |
||
| 36 | |||
| 37 | public function getProperties(): ArrayCollection |
||
| 40 | } |
||
| 41 | } |
||
| 42 |