Example #1
0
 /**
  * @param string[] $alpha2Codes
  * @return Country[]
  */
 public static function createCollectionFromAlpha2Codes($alpha2Codes)
 {
     $collection = array();
     foreach ($alpha2Codes as $countryCode) {
         $country = new self();
         $country->setIso31661Alpha2($countryCode);
         $collection[] = $country;
     }
     return $collection;
 }