Passed
Pull Request — master (#2)
by tsms
01:29
created
src/Hour.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -83,11 +83,11 @@
 block discarded – undo
83 83
     function build($sDates = array())
84 84
     {
85 85
         $mIH = $this->cE->getMinutesInHour($this->year, $this->month, $this->day,
86
-                           $this->hour);
86
+                            $this->hour);
87 87
         for ($i=0; $i < $mIH; $i++) {
88 88
             $this->children[$i] =
89 89
                 new Minute($this->year, $this->month, $this->day,
90
-                           $this->hour, $i);
90
+                            $this->hour, $i);
91 91
         }
92 92
         if (count($sDates) > 0) {
93 93
             $this->setSelection($sDates);
Please login to merge, or discard this patch.