ApaiIO\Configuration\GenericConfiguration::getAssociateTag PHP Method

getAssociateTag() public method

public getAssociateTag ( )
    public function getAssociateTag()
    {
        return $this->associateTag;
    }

Usage Example

 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::getAssociateTag