__toString() public method

Returns country name as native string
public __toString ( ) : string
return string
コード例 #1
0
ファイル: CountryTest.php プロジェクト: cermat/valueobjects
 public function testToString()
 {
     $italy = new Country(CountryCode::IT());
     $this->assertSame('Italy', $italy->__toString());
 }