Wrep\Notificato\Apns\Certificate::getDescription PHP Method

getDescription() public method

An as humanreadable as possible description of the certificate to identify the certificate
public getDescription ( ) : string
return string
    public function getDescription()
    {
        $description = $this->description;
        if (null == $description) {
            $description = $this->getFingerprint();
        }
        return $description;
    }