Uploadcare\Api::getPublicKey PHP Method

getPublicKey() public method

Return public key
public getPublicKey ( ) : string
return string
    public function getPublicKey()
    {
        return $this->public_key;
    }

Usage Example

Example #1
0
 /**
  * Is public key valid?
  */
 public function testPublicKeyValid()
 {
     $api = new Api(UC_PUBLIC_KEY, UC_SECRET_KEY);
     $this->assertTrue($api->getPublicKey() == 'demopublickey', 'This is true');
 }
All Usage Examples Of Uploadcare\Api::getPublicKey