move spacename to CLChillMain to ChillMain

This commit is contained in:
2014-10-17 08:27:31 +02:00
parent f44abb26fe
commit d9aa417e3c
27 changed files with 61 additions and 121 deletions

View File

@@ -1,11 +1,11 @@
<?php
namespace CL\Chill\MainBundle\DataFixtures\ORM;
namespace Chill\MainBundle\DataFixtures\ORM;
use Doctrine\Common\DataFixtures\AbstractFixture;
use Doctrine\Common\DataFixtures\OrderedFixtureInterface;
use Doctrine\Common\Persistence\ObjectManager;
use CL\Chill\MainBundle\Entity\Agent;
use Chill\MainBundle\Entity\Agent;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\DependencyInjection\ContainerAwareInterface;

View File

@@ -1,6 +1,6 @@
<?php
namespace CL\Chill\MainBundle\DataFixtures\ORM;
namespace Chill\MainBundle\DataFixtures\ORM;
use Doctrine\Common\DataFixtures\AbstractFixture;
use Doctrine\Common\DataFixtures\OrderedFixtureInterface;
@@ -23,7 +23,7 @@ class LoadCountries extends AbstractFixture {
echo "loading countries... \n";
foreach ($this->countries as $code => $name) {
$country = new \CL\Chill\MainBundle\Entity\Country();
$country = new \Chill\MainBundle\Entity\Country();
$country->setLabel(ucwords($name));
$manager->persist($country);
}