1 | <?php |
||
9 | class SslCheckFailed implements ShouldQueue |
||
10 | { |
||
11 | /** @var \Spatie\UptimeMonitor\Models\Monitor */ |
||
12 | public $monitor; |
||
13 | |||
14 | /** @var string */ |
||
15 | public $reason; |
||
16 | |||
17 | /** @var \Spatie\SslCertificate\SslCertificate|null */ |
||
18 | public $certificate; |
||
19 | |||
20 | public function __construct(Monitor $monitor, string $reason, SslCertificate $certificate = null) |
||
28 | } |
||
29 |