コード例 #1
0
ファイル: LocationWithState.php プロジェクト: jobles/core-php
 public function __construct(CountryInterface $country, SubdivisionInterface $state)
 {
     parent::__construct($country);
     $this->state = $state;
 }
コード例 #2
0
ファイル: LocationTest.php プロジェクト: jobles/core-php
 public function testGetLocation()
 {
     $this->assertEquals('BR', $this->location->getLocation());
 }