示例#1
0
 /**
  * @return array
  */
 public function provider()
 {
     $country = new Country();
     $country->setCountry('Testonia');
     $country->setCd('TS');
     $country->setIso3('TST');
     $country->setNumcode('1234');
     return [[$country]];
 }