| Total Complexity | 2 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class PhpCollector implements Collector |
||
| 9 | { |
||
| 10 | protected const COLLECTION_IDENTIFIER = 'PHP'; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @inheritDoc |
||
| 14 | */ |
||
| 15 | public function getIdentifier(): string |
||
| 16 | { |
||
| 17 | return self::COLLECTION_IDENTIFIER; |
||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @inheritDoc |
||
| 22 | */ |
||
| 23 | public function collect(): array |
||
| 36 | ]; |
||
| 37 | } |
||
| 39 |