1 | <?php |
||
12 | class Subject { |
||
13 | |||
14 | private $wikiPage; |
||
15 | private $propertyValueCollections; |
||
16 | |||
17 | /** |
||
18 | * @param DIWikiPage $wikiPage |
||
19 | * @param PropertyValueCollection[] $propertyValueCollections |
||
20 | */ |
||
21 | 3 | public function __construct( DIWikiPage $wikiPage, array $propertyValueCollections ) { |
|
25 | |||
26 | 3 | public function getWikiPage(): DIWikiPage { |
|
29 | |||
30 | /** |
||
31 | * @return PropertyValueCollection[] |
||
32 | */ |
||
33 | 3 | public function getPropertyValueCollections(): array { |
|
36 | |||
37 | |||
38 | |||
39 | } |