1 | <?php declare(strict_types = 1); |
||
14 | class Set extends Container |
||
15 | { |
||
16 | /** |
||
17 | * Check whether an equal member already exists in this Set. |
||
18 | */ |
||
19 | public function contains($member): bool |
||
24 | |||
25 | /** |
||
26 | * Return the offset of a member Resource with given URI or -1. |
||
27 | */ |
||
28 | public function findURI(string $uri) |
||
37 | |||
38 | /** |
||
39 | * Return whether this set does not contain same resources. |
||
40 | */ |
||
41 | public function isValid(): bool |
||
56 | } |
||
57 |