From d6c07f152ffb564d55db347c061eafaae45a2227 Mon Sep 17 00:00:00 2001 From: Mark Jordan Date: Wed, 2 Jan 2019 19:46:41 -0800 Subject: [PATCH] Work on #27 --- src/DataFixtures/AppFixtures.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DataFixtures/AppFixtures.php b/src/DataFixtures/AppFixtures.php index 2d8f0a1..5a39195 100644 --- a/src/DataFixtures/AppFixtures.php +++ b/src/DataFixtures/AppFixtures.php @@ -25,7 +25,7 @@ public function load(ObjectManager $manager) // Only the days and months are "random", within specificed ranges of values. $month = str_pad(rand(7, 12), 2, '0', STR_PAD_LEFT); $day = str_pad(rand(1,28), 2, '0', STR_PAD_LEFT); - $rand_date = '2018-' . $month . '-' . $day . '02T19:04:20-0800'; + $rand_date = '2018-' . $month . '-' . $day . 'T19:04:20-0800'; $event->setTimestamp($rand_date); $event->setDigestAlgorithm('SHA-1'); $event->setDigestValue($data[$id]['SHA-1']);