Passed
Pull Request — master (#2)
by tsms
01:31
created
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.
src/Year.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
     {
94 94
         $this->firstDay = $this->defineFirstDayOfWeek($firstDay);
95 95
         $monthsInYear   = $this->cE->getMonthsInYear($this->thisYear());
96
-        for ($i=1; $i <= $monthsInYear; $i++) {
96
+        for ($i = 1; $i <= $monthsInYear; $i++) {
97 97
             $this->children[$i] = Factory::create('Month', $this->year, $i);
98 98
         }
99 99
         if (count($sDates) > 0) {
Please login to merge, or discard this patch.