From 95984eff6d9857916f64480ec1225fa6af774a96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Wed, 1 Mar 2023 13:55:35 +0000 Subject: [PATCH] Apply 1 suggestion(s) to 1 file(s) --- .../ChillCalendarBundle/DataFixtures/ORM/LoadInvite.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Bundle/ChillCalendarBundle/DataFixtures/ORM/LoadInvite.php b/src/Bundle/ChillCalendarBundle/DataFixtures/ORM/LoadInvite.php index 2e021fc2b..ba325e296 100644 --- a/src/Bundle/ChillCalendarBundle/DataFixtures/ORM/LoadInvite.php +++ b/src/Bundle/ChillCalendarBundle/DataFixtures/ORM/LoadInvite.php @@ -37,11 +37,11 @@ class LoadInvite extends Fixture implements FixtureGroupInterface $arr = [ [ 'name' => ['fr' => 'Rendez-vous décliné'], - 'status' => 'declined' + 'status' => Invite::DECLINED, ], [ 'name' => ['fr' => 'Rendez-vous accepté'], - 'status' => 'accepted' + 'status' => Invite::ACCEPTED, ], ];