amount; } /** * @param int $amount * @return CustomerFixtures */ public function setAmount(int $amount) { $this->amount = $amount; return $this; } /** * @param bool $visible * @return $this */ public function setIsVisible(bool $visible) { $this->isVisible = $visible; return $this; } /** * {@inheritdoc} */ public function load(ObjectManager $manager) { $faker = Factory::create(); for ($i = 0; $i < $this->amount; $i++) { $visible = 0 != $i % 3; if (null !== $this->isVisible) { $visible = $this->isVisible; } $entity = new Customer(); $entity ->setCurrency($faker->currencyCode) ->setName($faker->company . ($visible ? '' : ' (x)')) ->setAddress($faker->address) ->setComment($faker->text) ->setNumber('C-' . $faker->ean8) ->setCountry($faker->countryCode) ->setTimezone($faker->timezone) ->setVisible($visible) ; $manager->persist($entity); } $manager->flush(); } /** * @param ObjectManager $manager * @return Customer[] */ protected function getAllCustomers(ObjectManager $manager) { $all = []; /* @var User[] $entries */ $entries = $manager->getRepository(Customer::class)->findAll(); foreach ($entries as $temp) { $all[$temp->getId()] = $temp; } return $all; } }