| 1 | <?php |
||
| 11 | class Diff { |
||
| 12 | protected $collections; |
||
| 13 | |||
| 14 | // @todo support of collection |
||
| 15 | public function byValues(): array { |
||
| 18 | |||
| 19 | // @todo support of collection |
||
| 20 | public function byKeysComparedBy(callable $compare): array { |
||
| 26 | |||
| 27 | // @todo support of collection |
||
| 28 | public function byKeys(): array { |
||
| 31 | |||
| 32 | // @todo support of collection |
||
| 33 | public function byValuesAndKeys(): array { |
||
| 36 | |||
| 37 | // @todo support of collection |
||
| 38 | public function byValuesAndKeysComparedBy(callable $compare): array { |
||
| 44 | } |