Skip to content

Commit

Permalink
fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Sep 4, 2017
1 parent 872e771 commit 1cad469
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -360,6 +360,10 @@ public function providePeriods()
array('2017-01-01', 'P1D', 2, \DatePeriod::EXCLUDE_START_DATE, 'every + 1d, from 2017-01-01 00:00:00.0 (excluded) recurring 2 time/s', '1) 2017-01-02%a2) 2017-01-03'),
);

if (\PHP_VERSION_ID < 70107) {
array_walk($periods, function (&$i) { $i[5] = ''; });
}

return $periods;
}

Expand Down

0 comments on commit 1cad469

Please sign in to comment.