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);