From 8371487b2e0f5557a7c60ae92d5d1c800ee5fafa Mon Sep 17 00:00:00 2001 From: Tchama Date: Fri, 4 Sep 2020 20:35:32 +0200 Subject: [PATCH] fix deprecated ObjectManager path in data fixtures scripts --- DataFixtures/ORM/LoadDocumentACL.php | 2 +- DataFixtures/ORM/LoadDocumentCategory.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DataFixtures/ORM/LoadDocumentACL.php b/DataFixtures/ORM/LoadDocumentACL.php index c17e795e6..0f4577ffd 100644 --- a/DataFixtures/ORM/LoadDocumentACL.php +++ b/DataFixtures/ORM/LoadDocumentACL.php @@ -21,7 +21,7 @@ namespace Chill\DocStoreBundle\DataFixtures\ORM; use Doctrine\Common\DataFixtures\AbstractFixture; use Doctrine\Common\DataFixtures\OrderedFixtureInterface; -use Doctrine\Common\Persistence\ObjectManager; +use Doctrine\Persistence\ObjectManager; use Chill\MainBundle\DataFixtures\ORM\LoadPermissionsGroup; use Chill\MainBundle\Entity\RoleScope; use Chill\MainBundle\DataFixtures\ORM\LoadScopes; diff --git a/DataFixtures/ORM/LoadDocumentCategory.php b/DataFixtures/ORM/LoadDocumentCategory.php index 37e55c5b7..2eb6e7181 100644 --- a/DataFixtures/ORM/LoadDocumentCategory.php +++ b/DataFixtures/ORM/LoadDocumentCategory.php @@ -19,7 +19,7 @@ namespace Chill\DocStoreBundle\DataFixtures\ORM; use Doctrine\Common\DataFixtures\AbstractFixture; use Doctrine\Common\DataFixtures\OrderedFixtureInterface; -use Doctrine\Common\Persistence\ObjectManager; +use Doctrine\Persistence\ObjectManager; use Chill\DocStoreBundle\Entity\DocumentCategory; /**