Passed
Push — master ( d2520f...3f8ec2 )
by Michael
02:50
created
class/pear/Calendar/Validator.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -90,8 +90,8 @@  discard block
 block discarded – undo
90 90
      */
91 91
     public function __construct(&$calendar)
92 92
     {
93
-        $this->calendar =& $calendar;
94
-        $this->cE       =& $calendar->getEngine();
93
+        $this->calendar = & $calendar;
94
+        $this->cE       = & $calendar->getEngine();
95 95
     }
96 96
 
97 97
     /**
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
             'isValidMinute',
110 110
             'isValidSecond',
111 111
         ];
112
-        $valid  = true;
112
+        $valid = true;
113 113
         foreach ($checks as $check) {
114 114
             if (!$this->{$check}()) {
115 115
                 $valid = false;
@@ -129,13 +129,13 @@  discard block
 block discarded – undo
129 129
         $y   = $this->calendar->thisYear();
130 130
         $min = $this->cE->getMinYears();
131 131
         if ($min > $y) {
132
-            $this->errors[] = new Calendar_Validation_Error('Year', $y, CALENDAR_VALUE_TOOSMALL . $min);
132
+            $this->errors[] = new Calendar_Validation_Error('Year', $y, CALENDAR_VALUE_TOOSMALL.$min);
133 133
 
134 134
             return false;
135 135
         }
136 136
         $max = $this->cE->getMaxYears();
137 137
         if ($y > $max) {
138
-            $this->errors[] = new Calendar_Validation_Error('Year', $y, CALENDAR_VALUE_TOOLARGE . $max);
138
+            $this->errors[] = new Calendar_Validation_Error('Year', $y, CALENDAR_VALUE_TOOLARGE.$max);
139 139
 
140 140
             return false;
141 141
         }
@@ -153,13 +153,13 @@  discard block
 block discarded – undo
153 153
         $m   = $this->calendar->thisMonth();
154 154
         $min = 1;
155 155
         if ($min > $m) {
156
-            $this->errors[] = new Calendar_Validation_Error('Month', $m, CALENDAR_VALUE_TOOSMALL . $min);
156
+            $this->errors[] = new Calendar_Validation_Error('Month', $m, CALENDAR_VALUE_TOOSMALL.$min);
157 157
 
158 158
             return false;
159 159
         }
160 160
         $max = $this->cE->getMonthsInYear($this->calendar->thisYear());
161 161
         if ($m > $max) {
162
-            $this->errors[] = new Calendar_Validation_Error('Month', $m, CALENDAR_VALUE_TOOLARGE . $max);
162
+            $this->errors[] = new Calendar_Validation_Error('Month', $m, CALENDAR_VALUE_TOOLARGE.$max);
163 163
 
164 164
             return false;
165 165
         }
@@ -177,13 +177,13 @@  discard block
 block discarded – undo
177 177
         $d   = $this->calendar->thisDay();
178 178
         $min = 1;
179 179
         if ($min > $d) {
180
-            $this->errors[] = new Calendar_Validation_Error('Day', $d, CALENDAR_VALUE_TOOSMALL . $min);
180
+            $this->errors[] = new Calendar_Validation_Error('Day', $d, CALENDAR_VALUE_TOOSMALL.$min);
181 181
 
182 182
             return false;
183 183
         }
184 184
         $max = $this->cE->getDaysInMonth($this->calendar->thisYear(), $this->calendar->thisMonth());
185 185
         if ($d > $max) {
186
-            $this->errors[] = new Calendar_Validation_Error('Day', $d, CALENDAR_VALUE_TOOLARGE . $max);
186
+            $this->errors[] = new Calendar_Validation_Error('Day', $d, CALENDAR_VALUE_TOOLARGE.$max);
187 187
 
188 188
             return false;
189 189
         }
@@ -201,13 +201,13 @@  discard block
 block discarded – undo
201 201
         $h   = $this->calendar->thisHour();
202 202
         $min = 0;
203 203
         if ($min > $h) {
204
-            $this->errors[] = new Calendar_Validation_Error('Hour', $h, CALENDAR_VALUE_TOOSMALL . $min);
204
+            $this->errors[] = new Calendar_Validation_Error('Hour', $h, CALENDAR_VALUE_TOOSMALL.$min);
205 205
 
206 206
             return false;
207 207
         }
208 208
         $max = ($this->cE->getHoursInDay($this->calendar->thisDay()) - 1);
209 209
         if ($h > $max) {
210
-            $this->errors[] = new Calendar_Validation_Error('Hour', $h, CALENDAR_VALUE_TOOLARGE . $max);
210
+            $this->errors[] = new Calendar_Validation_Error('Hour', $h, CALENDAR_VALUE_TOOLARGE.$max);
211 211
 
212 212
             return false;
213 213
         }
@@ -225,13 +225,13 @@  discard block
 block discarded – undo
225 225
         $i   = $this->calendar->thisMinute();
226 226
         $min = 0;
227 227
         if ($min > $i) {
228
-            $this->errors[] = new Calendar_Validation_Error('Minute', $i, CALENDAR_VALUE_TOOSMALL . $min);
228
+            $this->errors[] = new Calendar_Validation_Error('Minute', $i, CALENDAR_VALUE_TOOSMALL.$min);
229 229
 
230 230
             return false;
231 231
         }
232 232
         $max = ($this->cE->getMinutesInHour($this->calendar->thisHour()) - 1);
233 233
         if ($i > $max) {
234
-            $this->errors[] = new Calendar_Validation_Error('Minute', $i, CALENDAR_VALUE_TOOLARGE . $max);
234
+            $this->errors[] = new Calendar_Validation_Error('Minute', $i, CALENDAR_VALUE_TOOLARGE.$max);
235 235
 
236 236
             return false;
237 237
         }
@@ -249,13 +249,13 @@  discard block
 block discarded – undo
249 249
         $s   = $this->calendar->thisSecond();
250 250
         $min = 0;
251 251
         if ($min > $s) {
252
-            $this->errors[] = new Calendar_Validation_Error('Second', $s, CALENDAR_VALUE_TOOSMALL . $min);
252
+            $this->errors[] = new Calendar_Validation_Error('Second', $s, CALENDAR_VALUE_TOOSMALL.$min);
253 253
 
254 254
             return false;
255 255
         }
256 256
         $max = ($this->cE->getSecondsInMinute($this->calendar->thisMinute()) - 1);
257 257
         if ($s > $max) {
258
-            $this->errors[] = new Calendar_Validation_Error('Second', $s, CALENDAR_VALUE_TOOLARGE . $max);
258
+            $this->errors[] = new Calendar_Validation_Error('Second', $s, CALENDAR_VALUE_TOOLARGE.$max);
259 259
 
260 260
             return false;
261 261
         }
@@ -367,6 +367,6 @@  discard block
 block discarded – undo
367 367
      */
368 368
     public function toString()
369 369
     {
370
-        return $this->unit . ' = ' . $this->value . ' [' . $this->message . ']';
370
+        return $this->unit.' = '.$this->value.' ['.$this->message.']';
371 371
     }
372 372
 }
Please login to merge, or discard this patch.
class/pear/Calendar/Day.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 /**
50 50
  * Load Calendar base class.
51 51
  */
52
-require_once CALENDAR_ROOT . 'Calendar.php';
52
+require_once CALENDAR_ROOT.'Calendar.php';
53 53
 
54 54
 /**
55 55
  * Represents a Day and builds Hours.
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
      */
114 114
     public function build($sDates = [])
115 115
     {
116
-        require_once CALENDAR_ROOT . 'Hour.php';
116
+        require_once CALENDAR_ROOT.'Hour.php';
117 117
 
118 118
         $hID = $this->cE->getHoursInDay($this->year, $this->month, $this->day);
119 119
         for ($i = 0; $i < $hID; ++$i) {
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
         foreach ($sDates as $sDate) {
138 138
             if ($this->year == $sDate->thisYear() && $this->month == $sDate->thisMonth()
139 139
                 && $this->day == $sDate->thisDay()) {
140
-                $key = (int)$sDate->thisHour();
140
+                $key = (int) $sDate->thisHour();
141 141
                 if (isset($this->children[$key])) {
142 142
                     $sDate->setSelected();
143 143
                     $this->children[$key] = $sDate;
Please login to merge, or discard this patch.
class/pear/Calendar/Month/Weeks.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -50,12 +50,12 @@  discard block
 block discarded – undo
50 50
 /**
51 51
  * Load Calendar base class.
52 52
  */
53
-require_once CALENDAR_ROOT . 'Calendar.php';
53
+require_once CALENDAR_ROOT.'Calendar.php';
54 54
 
55 55
 /**
56 56
  * Load base month.
57 57
  */
58
-require_once CALENDAR_ROOT . 'Month.php';
58
+require_once CALENDAR_ROOT.'Month.php';
59 59
 
60 60
 /**
61 61
  * Represents a Month and builds Weeks
@@ -116,9 +116,9 @@  discard block
 block discarded – undo
116 116
      */
117 117
     public function build($sDates = [])
118 118
     {
119
-        require_once CALENDAR_ROOT . 'Table/Helper.php';
119
+        require_once CALENDAR_ROOT.'Table/Helper.php';
120 120
         $this->tableHelper = new Calendar_Table_Helper($this, $this->firstDay);
121
-        require_once CALENDAR_ROOT . 'Week.php';
121
+        require_once CALENDAR_ROOT.'Week.php';
122 122
         $numWeeks = $this->tableHelper->getNumWeeks();
123 123
         for ($i = 1, $d = 1; $i <= $numWeeks; ++$i, $d += $this->cE->getDaysInWeek($this->thisYear(), $this->thisMonth(), $this->thisDay())) {
124 124
             $this->children[$i] = new Calendar_Week($this->year, $this->month, $d, $this->tableHelper->getFirstDay());
Please login to merge, or discard this patch.
class/pear/Calendar/Month/Weekdays.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -49,12 +49,12 @@  discard block
 block discarded – undo
49 49
 /**
50 50
  * Load Calendar base class.
51 51
  */
52
-require_once CALENDAR_ROOT . 'Calendar.php';
52
+require_once CALENDAR_ROOT.'Calendar.php';
53 53
 
54 54
 /**
55 55
  * Load base month.
56 56
  */
57
-require_once CALENDAR_ROOT . 'Month.php';
57
+require_once CALENDAR_ROOT.'Month.php';
58 58
 
59 59
 /**
60 60
  * Represents a Month and builds Days in tabular form<br>
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
      */
130 130
     public function build($sDates = [])
131 131
     {
132
-        require_once CALENDAR_ROOT . 'Table/Helper.php';
132
+        require_once CALENDAR_ROOT.'Table/Helper.php';
133 133
         $this->tableHelper = new Calendar_Table_Helper($this, $this->firstDay);
134 134
         Calendar_Month::build($sDates);
135 135
         $this->buildEmptyDaysBefore();
Please login to merge, or discard this patch.
class/pear/Calendar/Week.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 /**
51 51
  * Load Calendar base class.
52 52
  */
53
-require_once CALENDAR_ROOT . 'Calendar.php';
53
+require_once CALENDAR_ROOT.'Calendar.php';
54 54
 
55 55
 /**
56 56
  * Represents a Week and builds Days in tabular format<br>
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
      */
139 139
     public function __construct($y, $m, $d, $firstDay = null)
140 140
     {
141
-        require_once CALENDAR_ROOT . 'Table/Helper.php';
141
+        require_once CALENDAR_ROOT.'Table/Helper.php';
142 142
         parent::__construct($y, $m, $d);
143 143
         $this->firstDay    = $this->defineFirstDayOfWeek($firstDay);
144 144
         $this->tableHelper = new Calendar_Table_Helper($this, $this->firstDay);
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
      */
171 171
     public function build($sDates = [])
172 172
     {
173
-        require_once CALENDAR_ROOT . 'Day.php';
173
+        require_once CALENDAR_ROOT.'Day.php';
174 174
         $year  = $this->cE->stampToYear($this->thisWeek);
175 175
         $month = $this->cE->stampToMonth($this->thisWeek);
176 176
         $day   = $this->cE->stampToDay($this->thisWeek);
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
             case 'array':
295 295
                 return $this->toArray($this->prevWeek);
296 296
             case 'object':
297
-                require_once CALENDAR_ROOT . 'Factory.php';
297
+                require_once CALENDAR_ROOT.'Factory.php';
298 298
 
299 299
                 return Calendar_Factory::createByTimestamp('Week', $this->prevWeek);
300 300
             case 'timestamp':
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
             case 'array':
329 329
                 return $this->toArray($this->thisWeek);
330 330
             case 'object':
331
-                require_once CALENDAR_ROOT . 'Factory.php';
331
+                require_once CALENDAR_ROOT.'Factory.php';
332 332
 
333 333
                 return Calendar_Factory::createByTimestamp('Week', $this->thisWeek);
334 334
             case 'timestamp':
@@ -355,7 +355,7 @@  discard block
 block discarded – undo
355 355
             case 'array':
356 356
                 return $this->toArray($this->nextWeek);
357 357
             case 'object':
358
-                require_once CALENDAR_ROOT . 'Factory.php';
358
+                require_once CALENDAR_ROOT.'Factory.php';
359 359
 
360 360
                 return Calendar_Factory::createByTimestamp('Week', $this->nextWeek);
361 361
             case 'timestamp':
Please login to merge, or discard this patch.
class/pear/Calendar/Year.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 /**
50 50
  * Load Calendar base class.
51 51
  */
52
-require_once CALENDAR_ROOT . 'Calendar.php';
52
+require_once CALENDAR_ROOT.'Calendar.php';
53 53
 
54 54
 /**
55 55
  * Represents a Year and builds Months<br>
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
      */
104 104
     public function build($sDates = [], $firstDay = null)
105 105
     {
106
-        require_once CALENDAR_ROOT . 'Factory.php';
106
+        require_once CALENDAR_ROOT.'Factory.php';
107 107
         $this->firstDay = $this->defineFirstDayOfWeek($firstDay);
108 108
         $monthsInYear   = $this->cE->getMonthsInYear($this->thisYear());
109 109
         for ($i = 1; $i <= $monthsInYear; ++$i) {
Please login to merge, or discard this patch.
class/pear/Calendar/Month.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 /**
50 50
  * Load Calendar base class.
51 51
  */
52
-require_once CALENDAR_ROOT . 'Calendar.php';
52
+require_once CALENDAR_ROOT.'Calendar.php';
53 53
 
54 54
 /**
55 55
  * Represents a Month and builds Days
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
      */
96 96
     public function build($sDates = [])
97 97
     {
98
-        require_once CALENDAR_ROOT . 'Day.php';
98
+        require_once CALENDAR_ROOT.'Day.php';
99 99
         $daysInMonth = $this->cE->getDaysInMonth($this->year, $this->month);
100 100
         for ($i = 1; $i <= $daysInMonth; ++$i) {
101 101
             $this->children[$i] = new Calendar_Day($this->year, $this->month, $i);
Please login to merge, or discard this patch.
class/pear/Calendar/Minute.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 /**
50 50
  * Load Calendar base class.
51 51
  */
52
-require_once CALENDAR_ROOT . 'Calendar.php';
52
+require_once CALENDAR_ROOT.'Calendar.php';
53 53
 
54 54
 /**
55 55
  * Represents a Minute and builds Seconds
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
      */
96 96
     public function build($sDates = [])
97 97
     {
98
-        require_once CALENDAR_ROOT . 'Second.php';
98
+        require_once CALENDAR_ROOT.'Second.php';
99 99
         $sIM = $this->cE->getSecondsInMinute($this->year, $this->month, $this->day, $this->hour, $this->minute);
100 100
         for ($i = 0; $i < $sIM; ++$i) {
101 101
             $this->children[$i] = new Calendar_Second($this->year, $this->month, $this->day, $this->hour, $this->minute, $i);
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
                 && $this->day == $sDate->thisDay()
122 122
                 && $this->hour == $sDate->thisHour()
123 123
                 && $this->minute == $sDate->thisMinute()) {
124
-                $key = (int)$sDate->thisSecond();
124
+                $key = (int) $sDate->thisSecond();
125 125
                 if (isset($this->children[$key])) {
126 126
                     $sDate->setSelected();
127 127
                     $this->children[$key] = $sDate;
Please login to merge, or discard this patch.
class/pear/Calendar/tests/validator_unit_test.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 //
3 3
 
4
-require_once __DIR__ . '/simple_include.php';
5
-require_once __DIR__ . '/calendar_include.php';
4
+require_once __DIR__.'/simple_include.php';
5
+require_once __DIR__.'/calendar_include.php';
6 6
 
7 7
 Mock::generate('Calendar_Engine_Interface', 'Mock_Calendar_Engine');
8 8
 Mock::generate('Calendar_Second', 'Mock_Calendar_Second');
Please login to merge, or discard this patch.