Passed
Pull Request — master (#2)
by tsms
01:28
created
src/Day.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     function build($sDates = array())
112 112
     {
113 113
         $hID = $this->cE->getHoursInDay($this->year, $this->month, $this->day);
114
-        for ($i=0; $i < $hID; $i++) {
114
+        for ($i = 0; $i < $hID; $i++) {
115 115
             $this->children[$i] =
116 116
                 new Hour($this->year, $this->month, $this->day, $i);
117 117
         }
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
      * @return void
207 207
      * @access private
208 208
      */
209
-    function setEmpty ($state = true)
209
+    function setEmpty($state = true)
210 210
     {
211 211
         $this->empty = $state;
212 212
     }
Please login to merge, or discard this patch.
src/Minute.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
     {
86 86
         $sIM = $this->cE->getSecondsInMinute($this->year, $this->month,
87 87
                 $this->day, $this->hour, $this->minute);
88
-        for ($i=0; $i < $sIM; $i++) {
88
+        for ($i = 0; $i < $sIM; $i++) {
89 89
             $this->children[$i] = new Second($this->year, $this->month,
90 90
                 $this->day, $this->hour, $this->minute, $i);
91 91
         }
Please login to merge, or discard this patch.