diff --git a/src/DataFixtures/SupplierFixtures.php b/src/DataFixtures/SupplierFixtures.php deleted file mode 100644 index 499a7a2..0000000 --- a/src/DataFixtures/SupplierFixtures.php +++ /dev/null @@ -1,38 +0,0 @@ -setLabel('LIOT CHATELLERAULT') - ->setStreet("14 Allée d'Argenson") - ->setStreet2('ZI Nord') - ->setPostalCode('86100') - ->setCity('CHATELLERAULT') - ->setCountryCode('FR') - ; - - $supplier = new Supplier() - ->setName('LIOT') - ->setEmail('lpc.contacts@lpc-liot.fr') - ->setPhone('05.49.20.09.10') - ; - - $supplier->getAddresses()->add($address); - - $manager->persist($address); - $manager->persist($supplier); - - $manager->flush(); - } -}