Example #1
0
 /**
  * Returns a new Country object given a native PHP string country code
  *
  * @param  string $code
  * @return self
  */
 public static function fromNative()
 {
     $codeString = \func_get_arg(0);
     $code = CountryCode::getByName($codeString);
     $country = new self($code);
     return $country;
 }