PayU\Configuration::setSecretKey PHP Method

setSecretKey() public method

public setSecretKey ( string $secretKey )
$secretKey string
    public function setSecretKey($secretKey)
    {
        $this->secretKey = $secretKey;
        return $this;
    }

Usage Example

Exemplo n.º 1
0
 public function testSetSecretKey()
 {
     $this->configuration->setSecretKey('TestSecretKeySetter');
     $this->assertEquals('TestSecretKeySetter', $this->configuration->getSecretKey());
 }