| 1 | <?php declare(strict_types=1); |
||
| 7 | final class TimeInfo |
||
| 8 | { |
||
| 9 | private $time; |
||
| 10 | private $uptime; |
||
| 11 | private $downtime; |
||
| 12 | |||
| 13 | public function __construct(\DateTimeInterface $time, int $uptime, int $downtime) |
||
| 19 | |||
| 20 | public function getTime(): \DateTimeImmutable |
||
| 24 | |||
| 25 | public function getUptime(): int |
||
| 29 | |||
| 30 | public function getDowntime(): int |
||
| 34 | } |
||
| 35 |