PayU\Configuration::setSecretKey PHP 메소드

setSecretKey() 공개 메소드

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

Usage Example

예제 #1
0
 public function testSetSecretKey()
 {
     $this->configuration->setSecretKey('TestSecretKeySetter');
     $this->assertEquals('TestSecretKeySetter', $this->configuration->getSecretKey());
 }