| 1 | <?php |
||
| 9 | class UptimeCheckRecovered implements ShouldQueue |
||
| 10 | { |
||
| 11 | public Monitor $monitor; |
||
|
|
|||
| 12 | |||
| 13 | public Period $downtimePeriod; |
||
| 14 | |||
| 15 | public function __construct(Monitor $monitor, Period $downtimePeriod) |
||
| 16 | { |
||
| 17 | $this->monitor = $monitor; |
||
| 18 | |||
| 19 | $this->downtimePeriod = $downtimePeriod; |
||
| 20 | } |
||
| 21 | } |
||
| 22 |