for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace OhDear\PhpSdk\Actions;
use OhDear\PhpSdk\Resources\CertificateHealth;
trait ManagesCertificateHealth
{
public function certificateHealth(int $siteId)
return new CertificateHealth($this->get("certificate-health/{$siteId}"));
get()
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
ignore-call
return new CertificateHealth($this->/** @scrutinizer ignore-call */ get("certificate-health/{$siteId}"));
}