From 6256d6a19ec0c101797358e44142c772c15075f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Mon, 17 May 2021 08:23:21 +0000 Subject: [PATCH] Apply 1 suggestion(s) to 1 file(s) --- .../ChillPersonBundle/DataFixtures/ORM/LoadSocialActions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bundle/ChillPersonBundle/DataFixtures/ORM/LoadSocialActions.php b/src/Bundle/ChillPersonBundle/DataFixtures/ORM/LoadSocialActions.php index 575f7b008..c12156fc7 100644 --- a/src/Bundle/ChillPersonBundle/DataFixtures/ORM/LoadSocialActions.php +++ b/src/Bundle/ChillPersonBundle/DataFixtures/ORM/LoadSocialActions.php @@ -70,7 +70,7 @@ class LoadSocialActions extends AbstractFixture implements OrderedFixtureInterfa $socialAction = new SocialAction(); $socialAction->setTitle($new['title']); $socialAction->setIssue($this->getReference($new['issue'])); - $socialAction->setDefaultNotificationDelay(new \DateInterval('PT30M')); + $socialAction->setDefaultNotificationDelay(new \DateInterval('P5D')); $manager->persist($socialAction); $this->addReference($ref, $socialAction);