1 | <?php |
||
14 | class References implements JsonSerializable, Countable, IteratorAggregate |
||
15 | { |
||
16 | protected $references = []; |
||
17 | |||
18 | public function add(string $filename, ?int $line): self |
||
30 | |||
31 | public function jsonSerialize() |
||
35 | |||
36 | public function getIterator() |
||
40 | |||
41 | public function count(): int |
||
47 | |||
48 | public function toArray(): array |
||
52 | } |
||
53 |