diff --git a/DataFixtures/ORM/LoadCenters.php b/DataFixtures/ORM/LoadCenters.php index d0bb7178f..1da1af2f3 100644 --- a/DataFixtures/ORM/LoadCenters.php +++ b/DataFixtures/ORM/LoadCenters.php @@ -22,7 +22,7 @@ namespace Chill\MainBundle\DataFixtures\ORM; use Doctrine\Common\DataFixtures\AbstractFixture; use Doctrine\Common\DataFixtures\OrderedFixtureInterface; -use Doctrine\Common\Persistence\ObjectManager; +use Doctrine\Persistence\ObjectManager; use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\DependencyInjection\ContainerAwareInterface; use Chill\MainBundle\Entity\Center; diff --git a/DataFixtures/ORM/LoadCountries.php b/DataFixtures/ORM/LoadCountries.php index 6f0967586..2405b4a98 100644 --- a/DataFixtures/ORM/LoadCountries.php +++ b/DataFixtures/ORM/LoadCountries.php @@ -6,7 +6,7 @@ use Doctrine\Common\DataFixtures\AbstractFixture; use Doctrine\Common\DataFixtures\OrderedFixtureInterface; use Symfony\Component\DependencyInjection\ContainerAwareInterface; use Symfony\Component\DependencyInjection\ContainerInterface; -use Doctrine\Common\Persistence\ObjectManager; +use Doctrine\Persistence\ObjectManager; use Chill\MainBundle\Command\LoadCountriesCommand; /** diff --git a/DataFixtures/ORM/LoadGroupCenters.php b/DataFixtures/ORM/LoadGroupCenters.php index 2629c0613..d44a3bbbf 100644 --- a/DataFixtures/ORM/LoadGroupCenters.php +++ b/DataFixtures/ORM/LoadGroupCenters.php @@ -22,7 +22,7 @@ namespace Chill\MainBundle\DataFixtures\ORM; use Doctrine\Common\DataFixtures\AbstractFixture; use Doctrine\Common\DataFixtures\OrderedFixtureInterface; -use Doctrine\Common\Persistence\ObjectManager; +use Doctrine\Persistence\ObjectManager; use Chill\MainBundle\Entity\GroupCenter; use Chill\MainBundle\DataFixtures\ORM\LoadCenters; use Chill\MainBundle\DataFixtures\ORM\LoadPermissionsGroup; diff --git a/DataFixtures/ORM/LoadLanguages.php b/DataFixtures/ORM/LoadLanguages.php index 325f139a0..a048b6b9f 100644 --- a/DataFixtures/ORM/LoadLanguages.php +++ b/DataFixtures/ORM/LoadLanguages.php @@ -6,7 +6,7 @@ use Doctrine\Common\DataFixtures\AbstractFixture; use Doctrine\Common\DataFixtures\OrderedFixtureInterface; use Symfony\Component\DependencyInjection\ContainerAwareInterface; use Symfony\Component\DependencyInjection\ContainerInterface; -use Doctrine\Common\Persistence\ObjectManager; +use Doctrine\Persistence\ObjectManager; use Symfony\Component\Intl\Intl; use Chill\MainBundle\Entity\Language; diff --git a/DataFixtures/ORM/LoadPermissionsGroup.php b/DataFixtures/ORM/LoadPermissionsGroup.php index b2ed78934..92d459aac 100644 --- a/DataFixtures/ORM/LoadPermissionsGroup.php +++ b/DataFixtures/ORM/LoadPermissionsGroup.php @@ -22,7 +22,7 @@ namespace Chill\MainBundle\DataFixtures\ORM; use Doctrine\Common\DataFixtures\AbstractFixture; use Doctrine\Common\DataFixtures\OrderedFixtureInterface; -use Doctrine\Common\Persistence\ObjectManager; +use Doctrine\Persistence\ObjectManager; use Chill\MainBundle\Entity\PermissionsGroup; /** diff --git a/DataFixtures/ORM/LoadPostalCodes.php b/DataFixtures/ORM/LoadPostalCodes.php index 95019d394..6e3d1781b 100644 --- a/DataFixtures/ORM/LoadPostalCodes.php +++ b/DataFixtures/ORM/LoadPostalCodes.php @@ -24,7 +24,7 @@ namespace Chill\MainBundle\DataFixtures\ORM; use Doctrine\Common\DataFixtures\AbstractFixture; use Doctrine\Common\DataFixtures\OrderedFixtureInterface; -use Doctrine\Common\Persistence\ObjectManager; +use Doctrine\Persistence\ObjectManager; use Chill\MainBundle\Entity\PostalCode; /** diff --git a/DataFixtures/ORM/LoadRoleScopes.php b/DataFixtures/ORM/LoadRoleScopes.php index 9693576d6..94c2d2d2f 100644 --- a/DataFixtures/ORM/LoadRoleScopes.php +++ b/DataFixtures/ORM/LoadRoleScopes.php @@ -22,7 +22,7 @@ namespace Chill\MainBundle\DataFixtures\ORM; use Doctrine\Common\DataFixtures\AbstractFixture; use Doctrine\Common\DataFixtures\OrderedFixtureInterface; -use Doctrine\Common\Persistence\ObjectManager; +use Doctrine\Persistence\ObjectManager; use Chill\MainBundle\Entity\RoleScope; use Chill\MainBundle\DataFixtures\ORM\LoadScopes; diff --git a/DataFixtures/ORM/LoadScopes.php b/DataFixtures/ORM/LoadScopes.php index f43fb0919..834de5e80 100644 --- a/DataFixtures/ORM/LoadScopes.php +++ b/DataFixtures/ORM/LoadScopes.php @@ -22,7 +22,7 @@ namespace Chill\MainBundle\DataFixtures\ORM; use Doctrine\Common\DataFixtures\AbstractFixture; use Doctrine\Common\DataFixtures\OrderedFixtureInterface; -use Doctrine\Common\Persistence\ObjectManager; +use Doctrine\Persistence\ObjectManager; /** * Create scopes diff --git a/DataFixtures/ORM/LoadUsers.php b/DataFixtures/ORM/LoadUsers.php index 1ace9ee03..e47f18c34 100644 --- a/DataFixtures/ORM/LoadUsers.php +++ b/DataFixtures/ORM/LoadUsers.php @@ -4,7 +4,7 @@ namespace Chill\MainBundle\DataFixtures\ORM; use Doctrine\Common\DataFixtures\AbstractFixture; use Doctrine\Common\DataFixtures\OrderedFixtureInterface; -use Doctrine\Common\Persistence\ObjectManager; +use Doctrine\Persistence\ObjectManager; use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\DependencyInjection\ContainerAwareInterface; use Chill\MainBundle\DataFixtures\ORM\LoadCenters;