Skip to content

Commit 3b1b9f2

Browse files
authored
Merge pull request #5 from adhocore/analysis-zGk7Kg
Apply fixes from StyleCI
2 parents d1c5fd1 + 0e77a56 commit 3b1b9f2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/SegmentChecker.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public function __construct()
2020
}
2121

2222
/**
23-
* Checks if a cron segment satisfies given time
23+
* Checks if a cron segment satisfies given time.
2424
*
2525
* @param string $segment
2626
* @param int $pos

tests/ExpressionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public function scheduleProvider()
8989
['4-59/2 * * * *', strtotime('2011-06-20 12:04:00'), '2011-06-20 12:04:00', true],
9090
['4-59/2 * * * *', strtotime('2011-06-20 12:06:00'), '2011-06-20 12:06:00', true],
9191
['4-59/3 * * * *', strtotime('2011-06-20 12:06:00'), '2011-06-20 12:07:00', false],
92-
array('0 0 * * 0,2-6', strtotime('2011-06-20 23:09:00'), '2011-06-21 00:00:00', false),
92+
['0 0 * * 0,2-6', strtotime('2011-06-20 23:09:00'), '2011-06-21 00:00:00', false],
9393
// Test Day of the Week and the Day of the Month (issue #1)
9494
['0 0 1 1 0', strtotime('2011-06-15 23:09:00'), '2012-01-01 00:00:00', false],
9595
['0 0 1 JAN 0', strtotime('2011-06-15 23:09:00'), '2012-01-01 00:00:00', false],

0 commit comments

Comments
 (0)