Bitpay\PrivateKey::getPublicKey PHP Метод

getPublicKey() публичный Метод

public getPublicKey ( ) : PublicKey
Результат PublicKey
    public function getPublicKey()
    {
        if (null === $this->publicKey) {
            $this->publicKey = new PublicKey();
            $this->publicKey->setPrivateKey($this);
            $this->publicKey->generate();
        }
        return $this->publicKey;
    }