| Total Complexity | 1 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class Agent { |
||
| 9 | |||
| 10 | /** @var integer */ |
||
| 11 | public int $period; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * Times of day in HH:MM format |
||
| 15 | * @var array<string> |
||
| 16 | */ |
||
| 17 | public array $times = []; |
||
| 18 | |||
| 19 | public string $interval = ''; |
||
| 20 | |||
| 21 | // /** @var integer */ |
||
| 22 | // public $timeout = 0; |
||
| 23 | // |
||
| 24 | // /** @var integer $priority */ |
||
| 25 | // public $priority = 100; |
||
| 26 | |||
| 27 | public function toArray() { |
||
| 36 | } |