Test Setup Failed
Push — master ( b7ae74...2557c0 )
by Php Easy Api
04:25
created
src/resta/Schedule/ScheduleManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
     /**
8 8
      * @var array
9 9
      */
10
-    protected static $cronScheduler = ['*','*','*','*','*'];
10
+    protected static $cronScheduler = ['*', '*', '*', '*', '*'];
11 11
 
12 12
     /**
13 13
      * set day for scheduler
Please login to merge, or discard this patch.
src/resta/Schedule/ScheduleInterface.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -8,42 +8,42 @@
 block discarded – undo
8 8
      * @param integer $day
9 9
      * @return $this
10 10
      */
11
-    public function day($day=1);
11
+    public function day($day = 1);
12 12
 
13 13
     /**
14 14
      * @param integer $hour
15 15
      * @return $this
16 16
      */
17
-    public function everyHour($hour=1);
17
+    public function everyHour($hour = 1);
18 18
     
19 19
     /**
20 20
      * @param int $minute
21 21
      * @return $this
22 22
      */
23
-    public function everyMinute($minute=1);
23
+    public function everyMinute($minute = 1);
24 24
 
25 25
     /**
26 26
      * @param mixed $hour
27 27
      * @return $this
28 28
      */
29
-    public function hour($hour='*');
29
+    public function hour($hour = '*');
30 30
 
31 31
     /**
32 32
      * @param int $minute
33 33
      * @return $this
34 34
      */
35
-    public function minute($minute=1);
35
+    public function minute($minute = 1);
36 36
 
37 37
     /**
38 38
      * @param mixed $month
39 39
      * @return $this
40 40
      */
41
-    public function month($month=1);
41
+    public function month($month = 1);
42 42
 
43 43
     /**
44 44
      * @param mixed $week$month
45 45
      * @return $this
46 46
      */
47
-    public function week($week=1);
47
+    public function week($week = 1);
48 48
 
49 49
 }
50 50
\ No newline at end of file
Please login to merge, or discard this patch.