From 0d312015fc7374f90916c55f7665a3bbec7dd5e2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Wed, 24 Feb 2021 00:42:52 +0100 Subject: [PATCH] Add Louvre and Monde locations --- DataFixtures/AirFixtures.php | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/DataFixtures/AirFixtures.php b/DataFixtures/AirFixtures.php index 7a68c66..fba0949 100644 --- a/DataFixtures/AirFixtures.php +++ b/DataFixtures/AirFixtures.php @@ -258,6 +258,26 @@ class AirFixtures extends \Doctrine\Bundle\FixturesBundle\Fixture implements \Sy 'latitude' => 48.892503, 'longitude' => 2.389300, 'hotspot' => false + ], + [ + 'title' => 'Louvre palace', + 'short' => 'Louvre', + 'address' => 'Quai François Mitterrand', + 'zipcode' => '75001', + 'city' => 'Paris', + 'latitude' => 48.860386, + 'longitude' => 2.332611, + 'hotspot' => false + ], + [ + 'title' => 'Monde garden', + 'short' => 'Monde', + 'address' => '63 avenue Pierre Mendès-France', + 'zipcode' => '75013', + 'city' => 'Paris', + 'latitude' => 48.840451, + 'longitude' => 2.367638, + 'hotspot' => false ] ]; -- 2.41.0