1 | <?php |
||
10 | class PeopleByAgeDifferenceCollection implements IteratorAggregate, Countable |
||
11 | { |
||
12 | private $peopleByAgeDifferenceList; |
||
13 | |||
14 | 10 | public function __construct(array $peopleByAgeDifferenceList = []) |
|
18 | |||
19 | 6 | public function getIterator(): iterable |
|
24 | |||
25 | 2 | public function count(): int |
|
29 | } |
||
30 |