ApaiIO\Configuration\GenericConfiguration::getSecretKey PHP Method

getSecretKey() public method

public getSecretKey ( )
    public function getSecretKey()
    {
        return $this->secretKey;
    }

Usage Example

コード例 #1
0
 public function testGettersAndSetters()
 {
     $this->genericConfiguration->setAccessKey('ABC');
     $this->genericConfiguration->setSecretKey('DEF');
     $this->genericConfiguration->setAssociateTag('GHI');
     $this->assertSame('ABC', $this->genericConfiguration->getAccessKey());
     $this->assertSame('DEF', $this->genericConfiguration->getSecretKey());
     $this->assertSame('GHI', $this->genericConfiguration->getAssociateTag());
 }
All Usage Examples Of ApaiIO\Configuration\GenericConfiguration::getSecretKey