Completed
Push — master ( a21b67...ec1681 )
by Michael
02:43
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/Decorator.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
      */
81 81
     public function __construct(&$calendar)
82 82
     {
83
-        $this->calendar =& $calendar;
83
+        $this->calendar = & $calendar;
84 84
     }
85 85
 
86 86
     /**
@@ -403,8 +403,8 @@  discard block
 block discarded – undo
403 403
         if (method_exists($this->calendar, 'prevWeek')) {
404 404
             return $this->calendar->prevWeek($format);
405 405
         } else {
406
-            require_once __DIR__ . '/PEAR.php';
407
-            PEAR::raiseError('Cannot call prevWeek on Calendar object of type: ' . get_class($this->calendar), 133, PEAR_ERROR_TRIGGER, E_USER_NOTICE, 'Calendar_Decorator::prevWeek()');
406
+            require_once __DIR__.'/PEAR.php';
407
+            PEAR::raiseError('Cannot call prevWeek on Calendar object of type: '.get_class($this->calendar), 133, PEAR_ERROR_TRIGGER, E_USER_NOTICE, 'Calendar_Decorator::prevWeek()');
408 408
 
409 409
             return false;
410 410
         }
@@ -422,8 +422,8 @@  discard block
 block discarded – undo
422 422
         if (method_exists($this->calendar, 'thisWeek')) {
423 423
             return $this->calendar->thisWeek($format);
424 424
         } else {
425
-            require_once __DIR__ . '/PEAR.php';
426
-            PEAR::raiseError('Cannot call thisWeek on Calendar object of type: ' . get_class($this->calendar), 133, PEAR_ERROR_TRIGGER, E_USER_NOTICE, 'Calendar_Decorator::thisWeek()');
425
+            require_once __DIR__.'/PEAR.php';
426
+            PEAR::raiseError('Cannot call thisWeek on Calendar object of type: '.get_class($this->calendar), 133, PEAR_ERROR_TRIGGER, E_USER_NOTICE, 'Calendar_Decorator::thisWeek()');
427 427
 
428 428
             return false;
429 429
         }
@@ -441,8 +441,8 @@  discard block
 block discarded – undo
441 441
         if (method_exists($this->calendar, 'nextWeek')) {
442 442
             return $this->calendar->nextWeek($format);
443 443
         } else {
444
-            require_once __DIR__ . '/PEAR.php';
445
-            PEAR::raiseError('Cannot call thisWeek on Calendar object of type: ' . get_class($this->calendar), 133, PEAR_ERROR_TRIGGER, E_USER_NOTICE, 'Calendar_Decorator::nextWeek()');
444
+            require_once __DIR__.'/PEAR.php';
445
+            PEAR::raiseError('Cannot call thisWeek on Calendar object of type: '.get_class($this->calendar), 133, PEAR_ERROR_TRIGGER, E_USER_NOTICE, 'Calendar_Decorator::nextWeek()');
446 446
 
447 447
             return false;
448 448
         }
Please login to merge, or discard this patch.
class/pear/Calendar/Hour.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 an Hour and builds Minutes
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
      */
95 95
     public function build($sDates = array())
96 96
     {
97
-        require_once CALENDAR_ROOT . 'Minute.php';
97
+        require_once CALENDAR_ROOT.'Minute.php';
98 98
         $mIH = $this->cE->getMinutesInHour($this->year, $this->month, $this->day, $this->hour);
99 99
         for ($i = 0; $i < $mIH; ++$i) {
100 100
             $this->children[$i] = new Calendar_Minute($this->year, $this->month, $this->day, $this->hour, $i);
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
             if ($this->year == $sDate->thisYear() && $this->month == $sDate->thisMonth()
119 119
                 && $this->day == $sDate->thisDay()
120 120
                 && $this->hour == $sDate->thisHour()) {
121
-                $key = (int)$sDate->thisMinute();
121
+                $key = (int) $sDate->thisMinute();
122 122
                 if (isset($this->children[$key])) {
123 123
                     $sDate->setSelected();
124 124
                     $this->children[$key] = $sDate;
Please login to merge, or discard this patch.
class/pear/Calendar/Decorator/Weekday.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -50,12 +50,12 @@  discard block
 block discarded – undo
50 50
 /**
51 51
  * Load Calendar decorator base class.
52 52
  */
53
-require_once CALENDAR_ROOT . 'Decorator.php';
53
+require_once CALENDAR_ROOT.'Decorator.php';
54 54
 
55 55
 /**
56 56
  * Load a Calendar_Day.
57 57
  */
58
-require_once CALENDAR_ROOT . 'Day.php';
58
+require_once CALENDAR_ROOT.'Day.php';
59 59
 
60 60
 /**
61 61
  * Decorator for fetching the day of the week
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
      */
102 102
     public function setFirstDay($firstDay)
103 103
     {
104
-        $this->firstDay = (int)$firstDay;
104
+        $this->firstDay = (int) $firstDay;
105 105
     }
106 106
 
107 107
     /**
Please login to merge, or discard this patch.
class/pear/Calendar/Decorator/Textual.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,12 +50,12 @@
 block discarded – undo
50 50
 /**
51 51
  * Load Calendar decorator base class.
52 52
  */
53
-require_once CALENDAR_ROOT . 'Decorator.php';
53
+require_once CALENDAR_ROOT.'Decorator.php';
54 54
 
55 55
 /**
56 56
  * Load the Uri utility.
57 57
  */
58
-require_once CALENDAR_ROOT . 'Util/Textual.php';
58
+require_once CALENDAR_ROOT.'Util/Textual.php';
59 59
 
60 60
 /**
61 61
  * Decorator to help with fetching textual representations of months and
Please login to merge, or discard this patch.
class/pear/Calendar/Decorator/Wrapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 /**
51 51
  * Load Calendar decorator base class.
52 52
  */
53
-require_once CALENDAR_ROOT . 'Decorator.php';
53
+require_once CALENDAR_ROOT.'Decorator.php';
54 54
 
55 55
 /**
56 56
  * Decorator to help with wrapping built children in another decorator.
Please login to merge, or discard this patch.
class/pear/Calendar/Decorator/Uri.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,12 +50,12 @@
 block discarded – undo
50 50
 /**
51 51
  * Load Calendar decorator base class.
52 52
  */
53
-require_once CALENDAR_ROOT . 'Decorator.php';
53
+require_once CALENDAR_ROOT.'Decorator.php';
54 54
 
55 55
 /**
56 56
  * Load the Uri utility.
57 57
  */
58
-require_once CALENDAR_ROOT . 'Util/Uri.php';
58
+require_once CALENDAR_ROOT.'Util/Uri.php';
59 59
 
60 60
 /**
61 61
  * Decorator to help with building HTML links for navigating the calendar<br>
Please login to merge, or discard this patch.
class/pear/Calendar/Util/Textual.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 /**
54 54
  * Load Calendar decorator base class.
55 55
  */
56
-require_once CALENDAR_ROOT . 'Decorator.php';
56
+require_once CALENDAR_ROOT.'Decorator.php';
57 57
 
58 58
 /**
59 59
  * Static utlities to help with fetching textual representations of months and
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
         $days  = self::weekdayNames($format);
208 208
         $stamp = $Calendar->prevDay('timestamp');
209 209
         $cE    = $Calendar->getEngine();
210
-        require_once __DIR__ . '/Date/Calc.php';
210
+        require_once __DIR__.'/Date/Calc.php';
211 211
         $day = Date_Calc::dayOfWeek($cE->stampToDay($stamp), $cE->stampToMonth($stamp), $cE->stampToYear($stamp));
212 212
 
213 213
         return $days[$day];
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
     public static function thisDayName($Calendar, $format = 'long')
227 227
     {
228 228
         $days = self::weekdayNames($format);
229
-        require_once __DIR__ . '/Date/Calc.php';
229
+        require_once __DIR__.'/Date/Calc.php';
230 230
         $day = Date_Calc::dayOfWeek($Calendar->thisDay(), $Calendar->thisMonth(), $Calendar->thisYear());
231 231
 
232 232
         return $days[$day];
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
         $days  = self::weekdayNames($format);
247 247
         $stamp = $Calendar->nextDay('timestamp');
248 248
         $cE    = $Calendar->getEngine();
249
-        require_once __DIR__ . '/Date/Calc.php';
249
+        require_once __DIR__.'/Date/Calc.php';
250 250
         $day = Date_Calc::dayOfWeek($cE->stampToDay($stamp), $cE->stampToMonth($stamp), $cE->stampToYear($stamp));
251 251
 
252 252
         return $days[$day];
Please login to merge, or discard this patch.
class/pear/Calendar/Util/Uri.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
      */
145 145
     public function prev($Calendar, $unit)
146 146
     {
147
-        $method = 'prev' . $unit;
147
+        $method = 'prev'.$unit;
148 148
         $stamp  = $Calendar->{$method}('timestamp');
149 149
 
150 150
         return $this->buildUriString($Calendar, $method, $stamp);
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
      */
161 161
     public function this($Calendar, $unit)
162 162
     {
163
-        $method = 'this' . $unit;
163
+        $method = 'this'.$unit;
164 164
         $stamp  = $Calendar->{$method}('timestamp');
165 165
 
166 166
         return $this->buildUriString($Calendar, $method, $stamp);
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
      */
177 177
     public function next($Calendar, $unit)
178 178
     {
179
-        $method = 'next' . $unit;
179
+        $method = 'next'.$unit;
180 180
         $stamp  = $Calendar->{$method}('timestamp');
181 181
 
182 182
         return $this->buildUriString($Calendar, $method, $stamp);
@@ -197,10 +197,10 @@  discard block
 block discarded – undo
197 197
         $cE        = $Calendar->getEngine();
198 198
         $separator = '';
199 199
         foreach ($this->uris as $unit => $uri) {
200
-            $call      = 'stampTo' . $unit;
200
+            $call = 'stampTo'.$unit;
201 201
             $uriString .= $separator;
202 202
             if (!$this->scalar) {
203
-                $uriString .= $uri . '=';
203
+                $uriString .= $uri.'=';
204 204
             }
205 205
             $uriString .= $cE->{$call}($stamp);
206 206
             $separator = $this->separator;
Please login to merge, or discard this patch.