Skip to content

Commit

Permalink
Work on #27
Browse files Browse the repository at this point in the history
  • Loading branch information
mjordan committed Jan 3, 2019
1 parent 4c5963b commit d6c07f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DataFixtures/AppFixtures.php
Original file line number Diff line number Diff line change
Expand Up @@ -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']);
Expand Down

0 comments on commit d6c07f1

Please sign in to comment.