ApaiIO\Configuration\GenericConfiguration::getCountry PHP Method

getCountry() public method

public getCountry ( )
    public function getCountry()
    {
        return $this->country;
    }

Usage Example

Ejemplo n.º 1
0
 public function testCountrySetter()
 {
     $object = new GenericConfiguration();
     $object->setCountry('DE');
     $this->assertEquals('de', $object->getCountry());
 }