createsCountry = $createsCountry; } /** * Run the database seeds. * * @return void * @throws \App\Classes\Exceptions\MalformedRequestException */ public function run() { foreach (['my', 'cn'] as $code) { $object = new CountryObject(country($code)); $this->createsCountry->execute($object); } } }