From d17f6f9a32aa035b842cc6cc0d95c4ebef6bae54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Mon, 28 Oct 2013 08:56:41 +0100 Subject: [PATCH] load countries --- DataFixtures/ORM/LoadCountries.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/DataFixtures/ORM/LoadCountries.php b/DataFixtures/ORM/LoadCountries.php index 864f94e50..f90f09d81 100644 --- a/DataFixtures/ORM/LoadCountries.php +++ b/DataFixtures/ORM/LoadCountries.php @@ -19,6 +19,9 @@ class LoadCountries extends AbstractFixture { } public function load(ObjectManager $manager) { + + echo "loading countries... \n"; + foreach ($this->countries as $code => $name) { $country = new \CL\Chill\MainBundle\Entity\Country(); $country->setLabel(ucwords($name));