| Total Complexity | 5 |
| Total Lines | 48 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class CronCollector implements Collector |
||
| 15 | { |
||
| 16 | protected const COLLECTION_IDENTIFIER = 'CronJobs'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @inheritDoc |
||
| 20 | */ |
||
| 21 | public function getIdentifier(): string |
||
| 22 | { |
||
| 23 | return self::COLLECTION_IDENTIFIER; |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @inheritDoc |
||
| 28 | */ |
||
| 29 | public function collect(): array |
||
| 62 | } |
||
| 63 | } |
||
| 64 |