| Total Complexity | 1 |
| Total Lines | 43 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class CronResponse |
||
| 6 | { |
||
| 7 | public string $id; |
||
| 8 | |||
| 9 | /** |
||
| 10 | * @var null[]|object |
||
| 11 | */ |
||
| 12 | public array|object $server; |
||
| 13 | |||
| 14 | public string $command; |
||
| 15 | |||
| 16 | public string $minute; |
||
| 17 | |||
| 18 | public string $hour; |
||
| 19 | |||
| 20 | public string $dayMonth; |
||
| 21 | |||
| 22 | public string $month; |
||
| 23 | |||
| 24 | public string $dayWeek; |
||
| 25 | |||
| 26 | public ?string $label; |
||
| 27 | |||
| 28 | public object $flags; |
||
| 29 | |||
| 30 | public object $environment; |
||
| 31 | |||
| 32 | public object $links; |
||
| 33 | |||
| 34 | public function __construct(object $cron) |
||
| 50 |