From 15c0f414af8ff162ca875dce1ab1ecbb30f1cc50 Mon Sep 17 00:00:00 2001 From: tristan Date: Fri, 13 Feb 2026 14:07:25 +0100 Subject: [PATCH] fix : corrections doublon fixture --- src/DataFixtures/SupplierFixtures.php | 38 --------------------------- 1 file changed, 38 deletions(-) delete mode 100644 src/DataFixtures/SupplierFixtures.php 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(); - } -}