Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bocharsky-bw committed Jun 5, 2019
1 parent c431c89 commit a54c5b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tutorial/src/AppBundle/DataFixtures/ORM/LoadBasicParkData.php
Expand Up @@ -4,11 +4,11 @@

use AppBundle\Entity\Dinosaur;
use AppBundle\Entity\Enclosure;
use Doctrine\Bundle\FixturesBundle\Fixture;
use Doctrine\Common\DataFixtures\AbstractFixture;
use Doctrine\Common\DataFixtures\OrderedFixtureInterface;
use Doctrine\Common\Persistence\ObjectManager;

class LoadBasicParkData extends Fixture implements OrderedFixtureInterface
class LoadBasicParkData extends AbstractFixture implements OrderedFixtureInterface
{
public function load(ObjectManager $manager)
{
Expand Down
4 changes: 2 additions & 2 deletions tutorial/src/AppBundle/DataFixtures/ORM/LoadSecurityData.php
Expand Up @@ -4,11 +4,11 @@

use AppBundle\Entity\Enclosure;
use AppBundle\Entity\Security;
use Doctrine\Bundle\FixturesBundle\Fixture;
use Doctrine\Common\DataFixtures\AbstractFixture;
use Doctrine\Common\DataFixtures\OrderedFixtureInterface;
use Doctrine\Common\Persistence\ObjectManager;

class LoadSecurityData extends Fixture implements OrderedFixtureInterface
class LoadSecurityData extends AbstractFixture implements OrderedFixtureInterface
{
public function load(ObjectManager $manager)
{
Expand Down

0 comments on commit a54c5b4

Please sign in to comment.