1 | <?php |
||
7 | class Collection implements QueryObject, \Iterator |
||
8 | { |
||
9 | use GqlIterator; |
||
10 | |||
11 | /** |
||
12 | * @var array |
||
13 | */ |
||
14 | private $arguments = []; |
||
15 | |||
16 | 100 | public function __construct(array $arguments = []) |
|
20 | |||
21 | public function filter(array $filters): Collection |
||
35 | |||
36 | 4 | public function isEmpty(): bool |
|
40 | } |
||
41 |