ApaiIO\Configuration\GenericConfiguration::getCountry PHP 메소드

getCountry() 공개 메소드

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

Usage Example

예제 #1
0
 public function testCountrySetter()
 {
     $object = new GenericConfiguration();
     $object->setCountry('DE');
     $this->assertEquals('de', $object->getCountry());
 }