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