ohdearapp /
ohdear-php-sdk
| 1 | <?php |
||
| 2 | |||
| 3 | namespace OhDear\PhpSdk\Actions; |
||
| 4 | |||
| 5 | use OhDear\PhpSdk\Resources\CertificateHealth; |
||
| 6 | |||
| 7 | trait ManagesCertificateHealth |
||
| 8 | { |
||
| 9 | public function certificateHealth(int $siteId) |
||
| 10 | { |
||
| 11 | return new CertificateHealth($this->get("certificate-health/{$siteId}")); |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 12 | } |
||
| 13 | } |
||
| 14 |