diff --git a/src/Faker/ORM/Doctrine/EntityPopulator.php b/src/Faker/ORM/Doctrine/EntityPopulator.php index adc06870..0f89f192 100644 --- a/src/Faker/ORM/Doctrine/EntityPopulator.php +++ b/src/Faker/ORM/Doctrine/EntityPopulator.php @@ -86,16 +86,17 @@ class EntityPopulator /** * Insert one new record using the Entity class. */ - public function execute($con, $insertedEntities) + public function execute($manager, $insertedEntities) { - $obj = new $this->class->getName(); + $class = $this->class->getName(); + $obj = new $class; foreach ($this->columnFormatters as $field => $format) { if (null !== $field) { $value = is_callable($format) ? $format($insertedEntities, $obj) : $format; $this->class->reflFields[$field]->setValue($obj, $value); } } - $con->persist($obj); + $manager->persist($obj); return $obj; } diff --git a/src/Faker/ORM/Doctrine/Populator.php b/src/Faker/ORM/Doctrine/Populator.php index af424abc..216c1f37 100644 --- a/src/Faker/ORM/Doctrine/Populator.php +++ b/src/Faker/ORM/Doctrine/Populator.php @@ -50,9 +50,12 @@ class Populator */ public function execute($entityManager = null) { - if (null !== $entityManager) { + if (null === $entityManager) { $entityManager = $this->manager; } + if (null === $entityManager) { + throw new \InvalidArgumentException("No entity manager passed to Doctrine Populator."); + } $insertedEntities = array(); foreach ($this->quantities as $class => $number) {