1 | <?php |
||
19 | final class Group extends Actor |
||
20 | { |
||
21 | private $members = array(); |
||
22 | |||
23 | /** |
||
24 | * @param Agent[] $members |
||
25 | */ |
||
26 | public function __construct(InverseFunctionalIdentifier $iri = null, string $name = null, array $members = array()) |
||
32 | |||
33 | 3 | /** |
|
34 | * Returns the members of this group. |
||
35 | 3 | * |
|
36 | 3 | * @return Agent[] |
|
37 | */ |
||
38 | public function getMembers(): array |
||
42 | |||
43 | /** |
||
44 | * {@inheritdoc} |
||
45 | */ |
||
46 | public function equals(StatementObject $actor): bool |
||
66 | } |
||
67 |