Completed
Push — master ( 5aa9e7...387997 )
by mehdi
03:34
created
src/Convert.php 4 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -63,6 +63,10 @@
 block discarded – undo
63 63
    *
64 64
    *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
65 65
    */
66
+
67
+  /**
68
+   * @param \DateTime $date_time
69
+   */
66 70
   public function __construct( $date_time = NULL ) {
67 71
 
68 72
     if ( $date_time !== NULL ) {
Please login to merge, or discard this patch.
Indentation   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -94,10 +94,10 @@  discard block
 block discarded – undo
94 94
   }
95 95
 
96 96
 /**
97
-   *convert shamsi year to gregorian year
98
-   * @since Oct, 16 2015
99
-   * @return object
100
-   */
97
+ *convert shamsi year to gregorian year
98
+ * @since Oct, 16 2015
99
+ * @return object
100
+ */
101 101
 public function shamsiToGregorian( $date_time ) {
102 102
 
103 103
 $this->date_time = $date_time;
@@ -154,15 +154,15 @@  discard block
 block discarded – undo
154 154
   $this->date_time->setDate( $gregorian_year, $gregorian_month, $gregorian_day );
155 155
 
156 156
 
157
- return $this->date_time;
157
+  return $this->date_time;
158 158
 
159 159
 }
160 160
 
161 161
 /**
162
-   *convert shamsi year to ghamari year
163
-   * @since Oct, 17 2015
164
-   * @return object
165
-   */
162
+ *convert shamsi year to ghamari year
163
+ * @since Oct, 17 2015
164
+ * @return object
165
+ */
166 166
 public function shamsiToGhamari( $date_time ) {
167 167
 
168 168
     $this->date_time = $date_time;
@@ -181,9 +181,9 @@  discard block
 block discarded – undo
181 181
 
182 182
       }
183 183
 
184
-     $this->temp_day += $this->day;
184
+      $this->temp_day += $this->day;
185 185
 
186
-     $this->leap = new Leap( $this->year );
186
+      $this->leap = new Leap( $this->year );
187 187
 
188 188
     if( $this->leap->get() && $this->month > 11 ) $this->temp_day++;
189 189
 
@@ -195,15 +195,15 @@  discard block
 block discarded – undo
195 195
 
196 196
     $_month = $_year[1];
197 197
 
198
-     $var_temp = '0.0';
198
+      $var_temp = '0.0';
199 199
 
200 200
       for ( $i = strlen( $_month ); $i > 2; $i-- ) {
201 201
 
202 202
         $var_temp .= '0';
203 203
 
204
-     }
204
+      }
205 205
 
206
-     $var_temp .= '1';
206
+      $var_temp .= '1';
207 207
 
208 208
     $_month = $_month * $var_temp ;
209 209
 
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
 
220 220
     for ( $i = strlen( $_day );  $i > 2;  $i-- ) {
221 221
 
222
-       $var_temp .= '0' ;
222
+        $var_temp .= '0' ;
223 223
 
224 224
     }
225 225
 
@@ -233,17 +233,17 @@  discard block
 block discarded – undo
233 233
 
234 234
     $this->day = $_day[0];
235 235
 
236
-   $this->date_time->setDate( $this->year, $this->month, $this->day );
236
+    $this->date_time->setDate( $this->year, $this->month, $this->day );
237 237
 
238
-   return $this->date_time;
238
+    return $this->date_time;
239 239
 
240 240
 }
241 241
 
242 242
 /**
243
-   *convert ghamari year to shamsi year
244
-   * @since Oct, 17 2015
245
-   * @return object
246
-   */
243
+ *convert ghamari year to shamsi year
244
+ * @since Oct, 17 2015
245
+ * @return object
246
+ */
247 247
 public function ghamariToShamsi( $date_time ) {
248 248
 
249 249
 $this->date_time = $date_time;
@@ -289,15 +289,15 @@  discard block
 block discarded – undo
289 289
 
290 290
   $this->date_time->setDate( $shamsi_year, $shamsi_month, $shamsi_day );
291 291
 
292
- return $this->date_time;
292
+  return $this->date_time;
293 293
 
294 294
 }
295 295
 
296 296
   /**
297
-    * convert ghamari year to gregorian year
298
-    * @since Oct, 17 2015
299
-    * @return object
300
-    */
297
+   * convert ghamari year to gregorian year
298
+   * @since Oct, 17 2015
299
+   * @return object
300
+   */
301 301
   public function ghamariToGregorian( $date_time ) {
302 302
 
303 303
     $this->date_time = $date_time;
@@ -343,7 +343,7 @@  discard block
 block discarded – undo
343 343
 
344 344
       $this->date_time->setDate( $gregorian_year, $gregorian_month, $gregorian_day );
345 345
 
346
-     return $this->date_time;
346
+      return $this->date_time;
347 347
 
348 348
   }
349 349
 
Please login to merge, or discard this patch.
Spacing   +55 added lines, -55 removed lines patch added patch discarded remove patch
@@ -63,15 +63,15 @@  discard block
 block discarded – undo
63 63
    *
64 64
    *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
65 65
    */
66
-  public function __construct( $date_time = NULL ) {
66
+  public function __construct($date_time = NULL) {
67 67
 
68
-    if ( $date_time !== NULL ) {
68
+    if ($date_time !== NULL) {
69 69
 
70 70
         $this->date_time = $date_time;
71 71
 
72 72
     }
73 73
 
74
-    $this->config = include( 'Config.php' );
74
+    $this->config = include('Config.php');
75 75
 
76 76
     $this->persian_month = $this->config['month']['persian'];
77 77
 
@@ -85,11 +85,11 @@  discard block
 block discarded – undo
85 85
    *
86 86
    *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
87 87
    */
88
-  public function to( $calendar ) {
88
+  public function to($calendar) {
89 89
 
90
-    $this->calendar_file = include( 'CalendarSettings/' . ucfirst( $calendar ) . '.php' );
90
+    $this->calendar_file = include('CalendarSettings/'.ucfirst($calendar).'.php');
91 91
 
92
-    return $this->calendar_file[ 'convert_to' ]( $this->date_time );
92
+    return $this->calendar_file['convert_to']($this->date_time);
93 93
 
94 94
   }
95 95
 
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
    * @since Oct, 16 2015
99 99
    * @return object
100 100
    */
101
-public function shamsiToGregorian( $date_time ) {
101
+public function shamsiToGregorian($date_time) {
102 102
 
103 103
 $this->date_time = $date_time;
104 104
 
@@ -110,39 +110,39 @@  discard block
 block discarded – undo
110 110
 
111 111
 $days_of_year = 0;
112 112
 
113
-foreach ( $this->config['shamsi_month_days'] as $month => $value ) {
113
+foreach ($this->config['shamsi_month_days'] as $month => $value) {
114 114
 
115
-  if( $this->month > $month ) $days_of_year += $value;
115
+  if ($this->month > $month) $days_of_year += $value;
116 116
 
117 117
 }
118 118
 
119 119
 $days_of_year += $this->day;
120 120
 
121
-$days_of_leap_years =  intval( ( ( $this->year - 1 ) / 4 )  );
121
+$days_of_leap_years = intval((($this->year - 1) / 4));
122 122
 
123
-$days_of_shamsi_years = ( ( ( $this->year - 1 ) * 365 ) + $days_of_year + $days_of_leap_years );
123
+$days_of_shamsi_years = ((($this->year - 1) * 365) + $days_of_year + $days_of_leap_years);
124 124
 
125 125
 $days_of_gregorain_years = $days_of_shamsi_years + 226899;
126 126
 
127
-if ( $this->month < 10 )  {
127
+if ($this->month < 10) {
128 128
 
129
-$days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $this->year + 621 ) / 4 ) );
129
+$days_of_gregorain_years = $days_of_gregorain_years - intval((($this->year + 621) / 4));
130 130
 
131 131
 }
132 132
 
133
-elseif ( ( ( 10 == $this->month ) && ( $this->day > 10 ) ) || ( $this->month > 10 ) ) {
133
+elseif (((10 == $this->month) && ($this->day > 10)) || ($this->month > 10)) {
134 134
 
135
-$days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $this->year + 622 ) / 4 ) );
135
+$days_of_gregorain_years = $days_of_gregorain_years - intval((($this->year + 622) / 4));
136 136
 
137 137
 }
138 138
 
139
-$gregorian_month = ( $days_of_gregorain_years % 365 );
139
+$gregorian_month = ($days_of_gregorain_years % 365);
140 140
 
141
-$gregorian_year = intval( $days_of_gregorain_years / 365 ) + 1;
141
+$gregorian_year = intval($days_of_gregorain_years / 365) + 1;
142 142
 
143 143
 foreach ($this->config['gregorian_month_days'] as $month => $value) {
144 144
 
145
-  if ( $gregorian_month < $value ) break;
145
+  if ($gregorian_month < $value) break;
146 146
 
147 147
     $gregorian_month -= $value;
148 148
 }
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
 
152 152
   $gregorian_month = $month;
153 153
 
154
-  $this->date_time->setDate( $gregorian_year, $gregorian_month, $gregorian_day );
154
+  $this->date_time->setDate($gregorian_year, $gregorian_month, $gregorian_day);
155 155
 
156 156
 
157 157
  return $this->date_time;
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
    * @since Oct, 17 2015
164 164
    * @return object
165 165
    */
166
-public function shamsiToGhamari( $date_time ) {
166
+public function shamsiToGhamari($date_time) {
167 167
 
168 168
     $this->date_time = $date_time;
169 169
 
@@ -173,9 +173,9 @@  discard block
 block discarded – undo
173 173
 
174 174
     $this->day = $this->date_time->format('d');
175 175
 
176
-    $this->temp_day = 0 ;
176
+    $this->temp_day = 0;
177 177
 
178
-    for ( $i = 1 ; $i < $this->month ; $i++ ) {
178
+    for ($i = 1; $i < $this->month; $i++) {
179 179
 
180 180
         $this->temp_day += $this->config['shamsi_month_days'][$i];
181 181
 
@@ -183,13 +183,13 @@  discard block
 block discarded – undo
183 183
 
184 184
      $this->temp_day += $this->day;
185 185
 
186
-     $this->leap = new Leap( $this->year );
186
+     $this->leap = new Leap($this->year);
187 187
 
188
-    if( $this->leap->get() && $this->month > 11 ) $this->temp_day++;
188
+    if ($this->leap->get() && $this->month > 11) $this->temp_day++;
189 189
 
190
-    $_year = ( ( ( ( ( $this->year - 1 ) * 365.2422 ) + $this->temp_day ) - 119) / 354.3670 ) + 1;
190
+    $_year = ((((($this->year - 1) * 365.2422) + $this->temp_day) - 119) / 354.3670) + 1;
191 191
 
192
-    $_year = explode( '.', $_year );
192
+    $_year = explode('.', $_year);
193 193
 
194 194
     $this->year = $_year[0];
195 195
 
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
 
198 198
      $var_temp = '0.0';
199 199
 
200
-      for ( $i = strlen( $_month ); $i > 2; $i-- ) {
200
+      for ($i = strlen($_month); $i > 2; $i--) {
201 201
 
202 202
         $var_temp .= '0';
203 203
 
@@ -205,11 +205,11 @@  discard block
 block discarded – undo
205 205
 
206 206
      $var_temp .= '1';
207 207
 
208
-    $_month = $_month * $var_temp ;
208
+    $_month = $_month * $var_temp;
209 209
 
210
-    $_month = ( $_month * 12 ) + 1;
210
+    $_month = ($_month * 12) + 1;
211 211
 
212
-    $_month = explode( '.', $_month );
212
+    $_month = explode('.', $_month);
213 213
 
214 214
     $this->month = $_month[0];
215 215
 
@@ -217,9 +217,9 @@  discard block
 block discarded – undo
217 217
 
218 218
     $var_temp = '0.0';
219 219
 
220
-    for ( $i = strlen( $_day );  $i > 2;  $i-- ) {
220
+    for ($i = strlen($_day); $i > 2; $i--) {
221 221
 
222
-       $var_temp .= '0' ;
222
+       $var_temp .= '0';
223 223
 
224 224
     }
225 225
 
@@ -227,13 +227,13 @@  discard block
 block discarded – undo
227 227
 
228 228
     $_day = $_day * $var_temp;
229 229
 
230
-    $_day = ( $_day * 29.530 );
230
+    $_day = ($_day * 29.530);
231 231
 
232
-    $_day = explode( '.', $_day );
232
+    $_day = explode('.', $_day);
233 233
 
234 234
     $this->day = $_day[0];
235 235
 
236
-   $this->date_time->setDate( $this->year, $this->month, $this->day );
236
+   $this->date_time->setDate($this->year, $this->month, $this->day);
237 237
 
238 238
    return $this->date_time;
239 239
 
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
    * @since Oct, 17 2015
245 245
    * @return object
246 246
    */
247
-public function ghamariToShamsi( $date_time ) {
247
+public function ghamariToShamsi($date_time) {
248 248
 
249 249
 $this->date_time = $date_time;
250 250
 
@@ -256,29 +256,29 @@  discard block
 block discarded – undo
256 256
 
257 257
 $days_of_year = 0;
258 258
 
259
-foreach ( $this->config['islamic_month_days'] as $month => $value ) {
259
+foreach ($this->config['islamic_month_days'] as $month => $value) {
260 260
 
261
-  if( $this->month > $month ) $days_of_year += $value;
261
+  if ($this->month > $month) $days_of_year += $value;
262 262
 
263 263
 }
264 264
 
265 265
 $days_of_year += $this->day;
266 266
 
267
-$days_of_leap_years =  intval( ( ( $this->year - 1 ) / 3 )  );
267
+$days_of_leap_years = intval((($this->year - 1) / 3));
268 268
 
269
-$days_of_ghamari_years = ( ( ( $this->year - 1 ) * 354 ) + $days_of_year + $days_of_leap_years );
269
+$days_of_ghamari_years = ((($this->year - 1) * 354) + $days_of_year + $days_of_leap_years);
270 270
 
271 271
 $days_of_shamsi_years = $days_of_ghamari_years + 179;
272 272
 
273
-$days_of_shamsi_years = $days_of_shamsi_years - intval( ( ( $this->year - 43 ) / 4 ) );
273
+$days_of_shamsi_years = $days_of_shamsi_years - intval((($this->year - 43) / 4));
274 274
 
275
-$shamsi_month = ( $days_of_shamsi_years % 365 );
275
+$shamsi_month = ($days_of_shamsi_years % 365);
276 276
 
277
-$shamsi_year = intval( $days_of_shamsi_years / 365 ) + 1;
277
+$shamsi_year = intval($days_of_shamsi_years / 365) + 1;
278 278
 
279 279
 foreach ($this->config['shamsi_month_days'] as $month => $value) {
280 280
 
281
-  if ( $shamsi_month < $value ) break;
281
+  if ($shamsi_month < $value) break;
282 282
 
283 283
     $shamsi_month -= $value;
284 284
 }
@@ -287,7 +287,7 @@  discard block
 block discarded – undo
287 287
 
288 288
   $shamsi_month = $month;
289 289
 
290
-  $this->date_time->setDate( $shamsi_year, $shamsi_month, $shamsi_day );
290
+  $this->date_time->setDate($shamsi_year, $shamsi_month, $shamsi_day);
291 291
 
292 292
  return $this->date_time;
293 293
 
@@ -298,7 +298,7 @@  discard block
 block discarded – undo
298 298
     * @since Oct, 17 2015
299 299
     * @return object
300 300
     */
301
-  public function ghamariToGregorian( $date_time ) {
301
+  public function ghamariToGregorian($date_time) {
302 302
 
303 303
     $this->date_time = $date_time;
304 304
 
@@ -310,29 +310,29 @@  discard block
 block discarded – undo
310 310
 
311 311
     $days_of_year = 0;
312 312
 
313
-    foreach ( $this->config['islamic_month_days'] as $month => $value ) {
313
+    foreach ($this->config['islamic_month_days'] as $month => $value) {
314 314
 
315
-      if( $this->month > $month ) $days_of_year += $value;
315
+      if ($this->month > $month) $days_of_year += $value;
316 316
 
317 317
     }
318 318
 
319 319
     $days_of_year += $this->day;
320 320
 
321
-    $days_of_leap_years =  intval( ( ( $this->year - 1 ) / 3 )  );
321
+    $days_of_leap_years = intval((($this->year - 1) / 3));
322 322
 
323
-    $days_of_ghamari_years = ( ( ( $this->year - 1 ) * 354 ) + $days_of_year + $days_of_leap_years );
323
+    $days_of_ghamari_years = ((($this->year - 1) * 354) + $days_of_year + $days_of_leap_years);
324 324
 
325 325
     $days_of_gregorain_years = $days_of_ghamari_years + 227078;
326 326
 
327
-    $days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $this->year + 578 ) / 4 ) );
327
+    $days_of_gregorain_years = $days_of_gregorain_years - intval((($this->year + 578) / 4));
328 328
 
329
-    $gregorian_month = ( $days_of_gregorain_years % 365 );
329
+    $gregorian_month = ($days_of_gregorain_years % 365);
330 330
 
331
-    $gregorian_year = intval( $days_of_gregorain_years / 365 ) + 1;
331
+    $gregorian_year = intval($days_of_gregorain_years / 365) + 1;
332 332
 
333 333
     foreach ($this->config['gregorian_month_days'] as $month => $value) {
334 334
 
335
-      if ( $gregorian_month < $value ) break;
335
+      if ($gregorian_month < $value) break;
336 336
 
337 337
         $gregorian_month -= $value;
338 338
     }
@@ -341,7 +341,7 @@  discard block
 block discarded – undo
341 341
 
342 342
       $gregorian_month = $month;
343 343
 
344
-      $this->date_time->setDate( $gregorian_year, $gregorian_month, $gregorian_day );
344
+      $this->date_time->setDate($gregorian_year, $gregorian_month, $gregorian_day);
345 345
 
346 346
      return $this->date_time;
347 347
 
Please login to merge, or discard this patch.
Braces   +22 added lines, -10 removed lines patch added patch discarded remove patch
@@ -112,7 +112,9 @@  discard block
 block discarded – undo
112 112
 
113 113
 foreach ( $this->config['shamsi_month_days'] as $month => $value ) {
114 114
 
115
-  if( $this->month > $month ) $days_of_year += $value;
115
+  if( $this->month > $month ) {
116
+    $days_of_year += $value;
117
+  }
116 118
 
117 119
 }
118 120
 
@@ -128,9 +130,7 @@  discard block
 block discarded – undo
128 130
 
129 131
 $days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $this->year + 621 ) / 4 ) );
130 132
 
131
-}
132
-
133
-elseif ( ( ( 10 == $this->month ) && ( $this->day > 10 ) ) || ( $this->month > 10 ) ) {
133
+} elseif ( ( ( 10 == $this->month ) && ( $this->day > 10 ) ) || ( $this->month > 10 ) ) {
134 134
 
135 135
 $days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $this->year + 622 ) / 4 ) );
136 136
 
@@ -142,7 +142,9 @@  discard block
 block discarded – undo
142 142
 
143 143
 foreach ($this->config['gregorian_month_days'] as $month => $value) {
144 144
 
145
-  if ( $gregorian_month < $value ) break;
145
+  if ( $gregorian_month < $value ) {
146
+    break;
147
+  }
146 148
 
147 149
     $gregorian_month -= $value;
148 150
 }
@@ -185,7 +187,9 @@  discard block
 block discarded – undo
185 187
 
186 188
      $this->leap = new Leap( $this->year );
187 189
 
188
-    if( $this->leap->get() && $this->month > 11 ) $this->temp_day++;
190
+    if( $this->leap->get() && $this->month > 11 ) {
191
+      $this->temp_day++;
192
+    }
189 193
 
190 194
     $_year = ( ( ( ( ( $this->year - 1 ) * 365.2422 ) + $this->temp_day ) - 119) / 354.3670 ) + 1;
191 195
 
@@ -258,7 +262,9 @@  discard block
 block discarded – undo
258 262
 
259 263
 foreach ( $this->config['islamic_month_days'] as $month => $value ) {
260 264
 
261
-  if( $this->month > $month ) $days_of_year += $value;
265
+  if( $this->month > $month ) {
266
+    $days_of_year += $value;
267
+  }
262 268
 
263 269
 }
264 270
 
@@ -278,7 +284,9 @@  discard block
 block discarded – undo
278 284
 
279 285
 foreach ($this->config['shamsi_month_days'] as $month => $value) {
280 286
 
281
-  if ( $shamsi_month < $value ) break;
287
+  if ( $shamsi_month < $value ) {
288
+    break;
289
+  }
282 290
 
283 291
     $shamsi_month -= $value;
284 292
 }
@@ -312,7 +320,9 @@  discard block
 block discarded – undo
312 320
 
313 321
     foreach ( $this->config['islamic_month_days'] as $month => $value ) {
314 322
 
315
-      if( $this->month > $month ) $days_of_year += $value;
323
+      if( $this->month > $month ) {
324
+        $days_of_year += $value;
325
+      }
316 326
 
317 327
     }
318 328
 
@@ -332,7 +342,9 @@  discard block
 block discarded – undo
332 342
 
333 343
     foreach ($this->config['gregorian_month_days'] as $month => $value) {
334 344
 
335
-      if ( $gregorian_month < $value ) break;
345
+      if ( $gregorian_month < $value ) {
346
+        break;
347
+      }
336 348
 
337 349
         $gregorian_month -= $value;
338 350
     }
Please login to merge, or discard this patch.
src/DayOf.php 4 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
 
71 71
     /**
72 72
    * @since Sept, 14 2015
73
-   * @return integer
73
+   * @return double
74 74
    */
75 75
   protected function persian_day_of_year() {
76 76
 
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 
94 94
      /**
95 95
    * @since Sept, 14 2015
96
-   * @return integer
96
+   * @return double
97 97
    */
98 98
   protected function islamic_day_of_year() {
99 99
 
Please login to merge, or discard this patch.
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -54,13 +54,13 @@  discard block
 block discarded – undo
54 54
 
55 55
       $this->result = $this->islamic_day_of_year();
56 56
 
57
-       break;
57
+        break;
58 58
 
59 59
       case 'gr':
60 60
 
61 61
       $this->result = date( 'z', strtotime( $this->date_time->format('Y-m-d H:i:s') ) ) + 1;
62 62
 
63
-       break;
63
+        break;
64 64
     }
65 65
 
66 66
     return $this->result;
@@ -69,9 +69,9 @@  discard block
 block discarded – undo
69 69
   }
70 70
 
71 71
     /**
72
-   * @since Sept, 14 2015
73
-   * @return integer
74
-   */
72
+     * @since Sept, 14 2015
73
+     * @return integer
74
+     */
75 75
   protected function persian_day_of_year() {
76 76
 
77 77
     $this->month = $this->date_time->format('n');
@@ -91,10 +91,10 @@  discard block
 block discarded – undo
91 91
     }
92 92
 
93 93
 
94
-     /**
95
-   * @since Sept, 14 2015
96
-   * @return integer
97
-   */
94
+      /**
95
+       * @since Sept, 14 2015
96
+       * @return integer
97
+       */
98 98
   protected function islamic_day_of_year() {
99 99
 
100 100
     $this->month = $this->date_time->format('n');
@@ -132,13 +132,13 @@  discard block
 block discarded – undo
132 132
 
133 133
       $this->result = $this->islamic_day_of_week();
134 134
 
135
-       break;
135
+        break;
136 136
 
137 137
       case 'gr':
138 138
 
139 139
       $this->result = date( 'w', strtotime( $this->date_time->format('Y-m-d H:i:s') ) ) + 1;
140 140
 
141
-       break;
141
+        break;
142 142
     }
143 143
 
144 144
     return $this->result;
@@ -162,9 +162,9 @@  discard block
 block discarded – undo
162 162
   }
163 163
 
164 164
     /**
165
-   * @since Sept, 14 2015
166
-   * @return integer
167
-   */
165
+     * @since Sept, 14 2015
166
+     * @return integer
167
+     */
168 168
   protected function islamic_day_of_week() {
169 169
 
170 170
     $this->day = str_replace( $this->config['week_days_name']['english'], $this->config['week_days_name']['islamic'][$this->geregorian_DayofWeek], $this->day);
Please login to merge, or discard this patch.
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -19,9 +19,9 @@  discard block
 block discarded – undo
19 19
 
20 20
   protected $geregorian_DayofWeek;
21 21
 
22
-  public function __construct( $date_time, $calendar_type = 'ir' ) {
22
+  public function __construct($date_time, $calendar_type = 'ir') {
23 23
 
24
-    $this->config = include( 'Config.php' );
24
+    $this->config = include('Config.php');
25 25
 
26 26
     $this->date_time = $date_time;
27 27
 
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
    */
43 43
   public function year() {
44 44
 
45
-    switch ( $this->calendar_type ) {
45
+    switch ($this->calendar_type) {
46 46
 
47 47
       case 'ir':
48 48
 
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
       case 'gr':
60 60
 
61
-      $this->result = date( 'z', strtotime( $this->date_time->format('Y-m-d H:i:s') ) ) + 1;
61
+      $this->result = date('z', strtotime($this->date_time->format('Y-m-d H:i:s'))) + 1;
62 62
 
63 63
        break;
64 64
     }
@@ -78,9 +78,9 @@  discard block
 block discarded – undo
78 78
 
79 79
     $this->day = $this->date_time->format('d');
80 80
 
81
-    foreach( $this->config['shamsi_month_days'] as $month => $value ) {
81
+    foreach ($this->config['shamsi_month_days'] as $month => $value) {
82 82
 
83
-      if ( $month < $this->month ) $this->result += $value;
83
+      if ($month < $this->month) $this->result += $value;
84 84
 
85 85
     }
86 86
 
@@ -101,9 +101,9 @@  discard block
 block discarded – undo
101 101
 
102 102
     $this->day = $this->date_time->format('d');
103 103
 
104
-    foreach( $this->config['islamic_month_days'] as $month => $value ) {
104
+    foreach ($this->config['islamic_month_days'] as $month => $value) {
105 105
 
106
-      if ( $month < $this->month ) $this->result += $value;
106
+      if ($month < $this->month) $this->result += $value;
107 107
 
108 108
     }
109 109
 
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
    */
121 121
   public function week() {
122 122
 
123
-    switch ( $this->calendar_type ) {
123
+    switch ($this->calendar_type) {
124 124
 
125 125
       case 'ir':
126 126
 
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
 
137 137
       case 'gr':
138 138
 
139
-      $this->result = date( 'w', strtotime( $this->date_time->format('Y-m-d H:i:s') ) ) + 1;
139
+      $this->result = date('w', strtotime($this->date_time->format('Y-m-d H:i:s'))) + 1;
140 140
 
141 141
        break;
142 142
     }
@@ -151,11 +151,11 @@  discard block
 block discarded – undo
151 151
    */
152 152
   protected function persian_day_of_week() {
153 153
 
154
-    $this->day = str_replace( $this->config['week_days_name']['english'], $this->config['week_days_name']['persian'], $this->day);
154
+    $this->day = str_replace($this->config['week_days_name']['english'], $this->config['week_days_name']['persian'], $this->day);
155 155
 
156
-    foreach ( $this->config['week_days_name']['persian'] as $key => $value ) {
156
+    foreach ($this->config['week_days_name']['persian'] as $key => $value) {
157 157
 
158
-      if( $value == $this->day ) return $key += 1;
158
+      if ($value == $this->day) return $key += 1;
159 159
 
160 160
     }
161 161
 
@@ -167,11 +167,11 @@  discard block
 block discarded – undo
167 167
    */
168 168
   protected function islamic_day_of_week() {
169 169
 
170
-    $this->day = str_replace( $this->config['week_days_name']['english'], $this->config['week_days_name']['islamic'][$this->geregorian_DayofWeek], $this->day);
170
+    $this->day = str_replace($this->config['week_days_name']['english'], $this->config['week_days_name']['islamic'][$this->geregorian_DayofWeek], $this->day);
171 171
 
172
-    foreach ( $this->config['week_days_name']['islamic'] as $key => $value ) {
172
+    foreach ($this->config['week_days_name']['islamic'] as $key => $value) {
173 173
 
174
-      if( $value == $this->day ) return $key += 1;
174
+      if ($value == $this->day) return $key += 1;
175 175
 
176 176
     }
177 177
 
Please login to merge, or discard this patch.
Braces   +12 added lines, -4 removed lines patch added patch discarded remove patch
@@ -80,7 +80,9 @@  discard block
 block discarded – undo
80 80
 
81 81
     foreach( $this->config['shamsi_month_days'] as $month => $value ) {
82 82
 
83
-      if ( $month < $this->month ) $this->result += $value;
83
+      if ( $month < $this->month ) {
84
+        $this->result += $value;
85
+      }
84 86
 
85 87
     }
86 88
 
@@ -103,7 +105,9 @@  discard block
 block discarded – undo
103 105
 
104 106
     foreach( $this->config['islamic_month_days'] as $month => $value ) {
105 107
 
106
-      if ( $month < $this->month ) $this->result += $value;
108
+      if ( $month < $this->month ) {
109
+        $this->result += $value;
110
+      }
107 111
 
108 112
     }
109 113
 
@@ -155,7 +159,9 @@  discard block
 block discarded – undo
155 159
 
156 160
     foreach ( $this->config['week_days_name']['persian'] as $key => $value ) {
157 161
 
158
-      if( $value == $this->day ) return $key += 1;
162
+      if( $value == $this->day ) {
163
+        return $key += 1;
164
+      }
159 165
 
160 166
     }
161 167
 
@@ -171,7 +177,9 @@  discard block
 block discarded – undo
171 177
 
172 178
     foreach ( $this->config['week_days_name']['islamic'] as $key => $value ) {
173 179
 
174
-      if( $value == $this->day ) return $key += 1;
180
+      if( $value == $this->day ) {
181
+        return $key += 1;
182
+      }
175 183
 
176 184
     }
177 185
 
Please login to merge, or discard this patch.
src/Events/Events.php 4 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -56,6 +56,10 @@
 block discarded – undo
56 56
 	 *
57 57
 	 *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/
58 58
 	 */
59
+
60
+	/**
61
+	 * @param string $path
62
+	 */
59 63
 	private function fetch( $path ) {
60 64
 
61 65
 		$this->events = include( $path );
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php namespace Datium;
2 2
 
3 3
 use Datium\Tools\Convert;
4
-use Datium\Tools\DayOf;
5 4
 use DateTime;
6 5
 use DateInterval;
7 6
 use DatePeriod;
Please login to merge, or discard this patch.
Indentation   +78 added lines, -78 removed lines patch added patch discarded remove patch
@@ -8,47 +8,47 @@  discard block
 block discarded – undo
8 8
 
9 9
 class Events {
10 10
 
11
-	private $local;
11
+  private $local;
12 12
 
13
-	private $events;
13
+  private $events;
14 14
 
15
-	private $date_time;
15
+  private $date_time;
16 16
 
17
-	private $convert;
17
+  private $convert;
18 18
 
19
-	private $result;
19
+  private $result;
20 20
 
21
-	private $period;
21
+  private $period;
22 22
 
23
-	private $interval;
23
+  private $interval;
24 24
 
25
-	private static $date_start;
25
+  private static $date_start;
26 26
 
27
-	private static $date_end;
27
+  private static $date_end;
28 28
 
29
-	public function __construct( $date_time, $date_end = NULL ) {
29
+  public function __construct( $date_time, $date_end = NULL ) {
30 30
 
31
-		if( $date_end !== NULL ) {
31
+    if( $date_end !== NULL ) {
32 32
 
33
-			Events::$date_start = $date_time;
33
+      Events::$date_start = $date_time;
34 34
 
35
-			Events::$date_end = $date_end;
35
+      Events::$date_end = $date_end;
36 36
 
37
-		} else {
37
+    } else {
38 38
 
39
-			Events::$date_start = $date_time;
39
+      Events::$date_start = $date_time;
40 40
 
41
-		}
41
+    }
42 42
 
43
-		$this->convert = new Convert;
43
+    $this->convert = new Convert;
44 44
 
45
-		$this->date_time = new DateTime();
45
+    $this->date_time = new DateTime();
46 46
 
47
-		return $this;
47
+    return $this;
48 48
 
49
-	}
49
+  }
50 50
 
51
-	/************************************************************
51
+  /************************************************************
52 52
 	 * Fetch Events array from own array file
53 53
 	 ************************************************************
54 54
 	 *
@@ -56,27 +56,27 @@  discard block
 block discarded – undo
56 56
 	 *
57 57
 	 *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/
58 58
 	 */
59
-	private function fetch( $path ) {
59
+  private function fetch( $path ) {
60 60
 
61
-		$this->events = include( $path );
61
+    $this->events = include( $path );
62 62
 
63
-		$this->interval = DateInterval::createFromDateString('1 day');
63
+    $this->interval = DateInterval::createFromDateString('1 day');
64 64
 
65
-		$this->period = new DatePeriod( Events::$date_start, $this->interval, Events::$date_end );
65
+    $this->period = new DatePeriod( Events::$date_start, $this->interval, Events::$date_end );
66 66
 
67
-		foreach ( $this->period as $dt ) {
67
+    foreach ( $this->period as $dt ) {
68 68
 
69
-			if ( isset( $this->events[ 'events' ][ intval( $dt->format('m') ) ][ intval( $dt->format('d') ) ] ) ) {
69
+      if ( isset( $this->events[ 'events' ][ intval( $dt->format('m') ) ][ intval( $dt->format('d') ) ] ) ) {
70 70
 
71
-				$this->result[ $dt->format( 'Y-m-d' ) ][] = $this->events[ 'events' ][ intval( $dt->format('m') ) ][ intval( $dt->format('d') ) ];
71
+        $this->result[ $dt->format( 'Y-m-d' ) ][] = $this->events[ 'events' ][ intval( $dt->format('m') ) ][ intval( $dt->format('d') ) ];
72 72
 
73
-			}
73
+      }
74 74
 
75
-		}
75
+    }
76 76
 
77
-	}
77
+  }
78 78
 
79
-	/************************************************************
79
+  /************************************************************
80 80
 	 * Return Array of Events
81 81
 	 ************************************************************
82 82
 	 *
@@ -85,31 +85,31 @@  discard block
 block discarded – undo
85 85
 	 *
86 86
 	 *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
87 87
 	 */
88
-	public function get() {
88
+  public function get() {
89 89
 
90
-		if( ! empty( $this->result ) ) {
90
+    if( ! empty( $this->result ) ) {
91 91
 
92
-			foreach( $this->result as $key => $day ) {
92
+      foreach( $this->result as $key => $day ) {
93 93
 
94
-				if ( ! ( $key > Events::$date_start->format( 'Y-m-d' ) && $key < Events::$date_end->format( 'Y-m-d' ) ) ) {
94
+        if ( ! ( $key > Events::$date_start->format( 'Y-m-d' ) && $key < Events::$date_end->format( 'Y-m-d' ) ) ) {
95 95
 
96
-					unset( $this->result[ $key ] );
96
+          unset( $this->result[ $key ] );
97 97
 
98
-				}
98
+        }
99 99
 
100
-			}
100
+      }
101 101
 
102
-		} else {
102
+    } else {
103 103
 
104
-			$this->result = array();
104
+      $this->result = array();
105 105
 
106
-		}
106
+    }
107 107
 
108
-		return $this->result;
108
+    return $this->result;
109 109
 
110
-	}
110
+  }
111 111
 
112
-		/************************************************************
112
+    /************************************************************
113 113
 		 * Return local events - with day start and end as an array
114 114
 		 ************************************************************
115 115
 		 *
@@ -118,72 +118,72 @@  discard block
 block discarded – undo
118 118
 		 *
119 119
 		 *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
120 120
 		 */
121
-		public function local( $country_code = "ir" ) {
121
+    public function local( $country_code = "ir" ) {
122 122
 
123
-				/*
123
+        /*
124 124
 				 * Capitalize the first character of $country_code according the file
125 125
 				 * structure.
126 126
 				 */
127
-				$country_code = strtolower( $country_code = 'ir' ) ;
127
+        $country_code = strtolower( $country_code = 'ir' ) ;
128 128
 
129
-				$this->local = include( 'Localization/' . $country_code . '.php' );
129
+        $this->local = include( 'Localization/' . $country_code . '.php' );
130 130
 
131
-				foreach( $this->local[ 'events' ] as $month => $events ) {
131
+        foreach( $this->local[ 'events' ] as $month => $events ) {
132 132
 
133
-					foreach( $events as $day => $event ){
133
+          foreach( $events as $day => $event ){
134 134
 
135
-						$this->date_time = new DateTime();
135
+            $this->date_time = new DateTime();
136 136
 
137
-						$this->date_time->setDate( Events::$date_start->format( 'Y' ), $month, $day );
137
+            $this->date_time->setDate( Events::$date_start->format( 'Y' ), $month, $day );
138 138
 
139
-						switch ( $this->local[ 'default_calendar' ] ) {
139
+            switch ( $this->local[ 'default_calendar' ] ) {
140 140
 
141
-							case 'shamsi':
141
+              case 'shamsi':
142 142
 
143
-							$this->date_time->setDate( 1394, $month, $day );
143
+              $this->date_time->setDate( 1394, $month, $day );
144 144
 
145
-							$this->date_time = $this->convert->shamsiToGregorian( $this->date_time );
145
+              $this->date_time = $this->convert->shamsiToGregorian( $this->date_time );
146 146
 
147
-							break;
147
+              break;
148 148
 
149
-							case 'ghamari':
149
+              case 'ghamari':
150 150
 
151
-								$this->date_time = $this->convert->ghamariToGregorian( $this->date_time );
151
+                $this->date_time = $this->convert->ghamariToGregorian( $this->date_time );
152 152
 
153
-							break;
153
+              break;
154 154
 
155
-						}
155
+            }
156 156
 
157
-						$this->result[ $this->date_time->format( 'Y-m-d' ) ][] =  $event;
157
+            $this->result[ $this->date_time->format( 'Y-m-d' ) ][] =  $event;
158 158
 
159
-					}
159
+          }
160 160
 
161
-				}
161
+        }
162 162
 
163
-				ksort( $this->result );
163
+        ksort( $this->result );
164 164
 
165
-		return $this;
165
+    return $this;
166 166
 
167
-	}
167
+  }
168 168
 
169
-	public function weekend() {
169
+  public function weekend() {
170 170
 
171
-		return 0;
171
+    return 0;
172 172
 
173
-	}
173
+  }
174 174
 
175
-	public function relagious() {
175
+  public function relagious() {
176 176
 
177
-		return 0;
177
+    return 0;
178 178
 
179
-	}
179
+  }
180 180
 
181
-	public function international() {
181
+  public function international() {
182 182
 
183
-		$this->fetch( 'Global/global.php' );
183
+    $this->fetch( 'Global/global.php' );
184 184
 
185
-		return $this;
185
+    return $this;
186 186
 
187
-	}
187
+  }
188 188
 
189 189
 }
Please login to merge, or discard this patch.
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -26,9 +26,9 @@  discard block
 block discarded – undo
26 26
 
27 27
 	private static $date_end;
28 28
 
29
-	public function __construct( $date_time, $date_end = NULL ) {
29
+	public function __construct($date_time, $date_end = NULL) {
30 30
 
31
-		if( $date_end !== NULL ) {
31
+		if ($date_end !== NULL) {
32 32
 
33 33
 			Events::$date_start = $date_time;
34 34
 
@@ -56,19 +56,19 @@  discard block
 block discarded – undo
56 56
 	 *
57 57
 	 *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/
58 58
 	 */
59
-	private function fetch( $path ) {
59
+	private function fetch($path) {
60 60
 
61
-		$this->events = include( $path );
61
+		$this->events = include($path);
62 62
 
63 63
 		$this->interval = DateInterval::createFromDateString('1 day');
64 64
 
65
-		$this->period = new DatePeriod( Events::$date_start, $this->interval, Events::$date_end );
65
+		$this->period = new DatePeriod(Events::$date_start, $this->interval, Events::$date_end);
66 66
 
67
-		foreach ( $this->period as $dt ) {
67
+		foreach ($this->period as $dt) {
68 68
 
69
-			if ( isset( $this->events[ 'events' ][ intval( $dt->format('m') ) ][ intval( $dt->format('d') ) ] ) ) {
69
+			if (isset($this->events['events'][intval($dt->format('m'))][intval($dt->format('d'))])) {
70 70
 
71
-				$this->result[ $dt->format( 'Y-m-d' ) ][] = $this->events[ 'events' ][ intval( $dt->format('m') ) ][ intval( $dt->format('d') ) ];
71
+				$this->result[$dt->format('Y-m-d')][] = $this->events['events'][intval($dt->format('m'))][intval($dt->format('d'))];
72 72
 
73 73
 			}
74 74
 
@@ -87,13 +87,13 @@  discard block
 block discarded – undo
87 87
 	 */
88 88
 	public function get() {
89 89
 
90
-		if( ! empty( $this->result ) ) {
90
+		if ( ! empty($this->result)) {
91 91
 
92
-			foreach( $this->result as $key => $day ) {
92
+			foreach ($this->result as $key => $day) {
93 93
 
94
-				if ( ! ( $key > Events::$date_start->format( 'Y-m-d' ) && $key < Events::$date_end->format( 'Y-m-d' ) ) ) {
94
+				if ( ! ($key > Events::$date_start->format('Y-m-d') && $key < Events::$date_end->format('Y-m-d'))) {
95 95
 
96
-					unset( $this->result[ $key ] );
96
+					unset($this->result[$key]);
97 97
 
98 98
 				}
99 99
 
@@ -118,49 +118,49 @@  discard block
 block discarded – undo
118 118
 		 *
119 119
 		 *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
120 120
 		 */
121
-		public function local( $country_code = "ir" ) {
121
+		public function local($country_code = "ir") {
122 122
 
123 123
 				/*
124 124
 				 * Capitalize the first character of $country_code according the file
125 125
 				 * structure.
126 126
 				 */
127
-				$country_code = strtolower( $country_code = 'ir' ) ;
127
+				$country_code = strtolower($country_code = 'ir');
128 128
 
129
-				$this->local = include( 'Localization/' . $country_code . '.php' );
129
+				$this->local = include('Localization/'.$country_code.'.php');
130 130
 
131
-				foreach( $this->local[ 'events' ] as $month => $events ) {
131
+				foreach ($this->local['events'] as $month => $events) {
132 132
 
133
-					foreach( $events as $day => $event ){
133
+					foreach ($events as $day => $event) {
134 134
 
135 135
 						$this->date_time = new DateTime();
136 136
 
137
-						$this->date_time->setDate( Events::$date_start->format( 'Y' ), $month, $day );
137
+						$this->date_time->setDate(Events::$date_start->format('Y'), $month, $day);
138 138
 
139
-						switch ( $this->local[ 'default_calendar' ] ) {
139
+						switch ($this->local['default_calendar']) {
140 140
 
141 141
 							case 'shamsi':
142 142
 
143
-							$this->date_time->setDate( 1394, $month, $day );
143
+							$this->date_time->setDate(1394, $month, $day);
144 144
 
145
-							$this->date_time = $this->convert->shamsiToGregorian( $this->date_time );
145
+							$this->date_time = $this->convert->shamsiToGregorian($this->date_time);
146 146
 
147 147
 							break;
148 148
 
149 149
 							case 'ghamari':
150 150
 
151
-								$this->date_time = $this->convert->ghamariToGregorian( $this->date_time );
151
+								$this->date_time = $this->convert->ghamariToGregorian($this->date_time);
152 152
 
153 153
 							break;
154 154
 
155 155
 						}
156 156
 
157
-						$this->result[ $this->date_time->format( 'Y-m-d' ) ][] =  $event;
157
+						$this->result[$this->date_time->format('Y-m-d')][] = $event;
158 158
 
159 159
 					}
160 160
 
161 161
 				}
162 162
 
163
-				ksort( $this->result );
163
+				ksort($this->result);
164 164
 
165 165
 		return $this;
166 166
 
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
 
181 181
 	public function international() {
182 182
 
183
-		$this->fetch( 'Global/global.php' );
183
+		$this->fetch('Global/global.php');
184 184
 
185 185
 		return $this;
186 186
 
Please login to merge, or discard this patch.
src/Leap.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
   /**
101 101
    * check the ghamari year is leap or not
102 102
    * @since Oct, 24 2015
103
-   * @return boolean
103
+   * @return integer|null
104 104
    */
105 105
   public function ghamariLeapYear() {
106 106
 
Please login to merge, or discard this patch.
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
   /**
9 9
    * @param integer store year value
10 10
    */
11
-	protected $year;
11
+  protected $year;
12 12
 
13 13
   /**
14 14
    * @param string store type of year value
@@ -25,15 +25,15 @@  discard block
 block discarded – undo
25 25
    * @param $year integer
26 26
    * @since Aug, 21 2015
27 27
    */
28
-	public function __construct( $year, $type = 'gr' ) {
28
+  public function __construct( $year, $type = 'gr' ) {
29 29
 
30
-			$this->year = $year;
30
+      $this->year = $year;
31 31
 
32 32
       $this->type = $type;
33 33
 
34 34
       return $this;
35 35
 
36
-	}
36
+  }
37 37
 
38 38
 
39 39
   /**
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
    */
55 55
   public function shamsiLeapYear() {
56 56
 
57
-		$shamsi_years = 0;
57
+    $shamsi_years = 0;
58 58
 
59 59
     while ( $shamsi_years < ( $this->year - 128 ) ) {
60 60
 
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
 
72 72
     $this->result = $this->result % 33;
73 73
 
74
-   }
74
+    }
75 75
 
76 76
     if ( ( $this->result == 28 ) || ( $this->result == 27 ) ) {
77 77
 
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
 
89 89
     $this->result = $this->result % 33;
90 90
 
91
-   }
91
+    }
92 92
 
93 93
     if ( ( ( $this->result % 4 ) == 0 ) && ( $this->result != 28 ) ) {
94 94
 
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
 
134 134
        $this->result = $this->shamsiLeapYear();
135 135
 
136
-       break;
136
+        break;
137 137
 
138 138
       case 'gh':
139 139
 
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
    * @param $year integer
26 26
    * @since Aug, 21 2015
27 27
    */
28
-	public function __construct( $year, $type = 'gr' ) {
28
+	public function __construct($year, $type = 'gr') {
29 29
 
30 30
 			$this->year = $year;
31 31
 
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
    */
44 44
   public function gregorinLeapYear() {
45 45
 
46
-  return ( ( ( $this->year % 4 ) == 0 ) && ( ( ( $this->year % 100 ) != 0 ) || ( ( $this->year % 400 ) == 0 ) ) );
46
+  return ((($this->year % 4) == 0) && ((($this->year % 100) != 0) || (($this->year % 400) == 0)));
47 47
 
48 48
   }
49 49
 
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 
57 57
 		$shamsi_years = 0;
58 58
 
59
-    while ( $shamsi_years < ( $this->year - 128 ) ) {
59
+    while ($shamsi_years < ($this->year - 128)) {
60 60
 
61 61
       $shamsi_years += 128;
62 62
 
@@ -67,13 +67,13 @@  discard block
 block discarded – undo
67 67
 
68 68
     $this->result -= $shamsi_years;
69 69
 
70
-    if ( $this->result >= 33 ) {
70
+    if ($this->result >= 33) {
71 71
 
72 72
     $this->result = $this->result % 33;
73 73
 
74 74
    }
75 75
 
76
-    if ( ( $this->result == 28 ) || ( $this->result == 27 ) ) {
76
+    if (($this->result == 28) || ($this->result == 27)) {
77 77
 
78 78
       return $this->result;
79 79
 
@@ -84,13 +84,13 @@  discard block
 block discarded – undo
84 84
 
85 85
     $this->result -= $shamsi_years;
86 86
 
87
-    if ( $this->result >= 33 ) {
87
+    if ($this->result >= 33) {
88 88
 
89 89
     $this->result = $this->result % 33;
90 90
 
91 91
    }
92 92
 
93
-    if ( ( ( $this->result % 4 ) == 0 ) && ( $this->result != 28 ) ) {
93
+    if ((($this->result % 4) == 0) && ($this->result != 28)) {
94 94
 
95 95
       return $this->result;
96 96
 
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
 
107 107
     $this->result = $this->year % 30;
108 108
 
109
-    if ( ( 2 == $this->result ) || ( 5 == $this->result ) || ( 7 == $this->result ) || ( 10 == $this->result ) || ( 13 == $this->result ) || ( 16 == $this->result ) || ( 18 == $this->result ) || ( 21 == $this->result ) || ( 24 == $this->year ) || ( 26 == $this->result ) || ( 29 == $this->result ) ) {
109
+    if ((2 == $this->result) || (5 == $this->result) || (7 == $this->result) || (10 == $this->result) || (13 == $this->result) || (16 == $this->result) || (18 == $this->result) || (21 == $this->result) || (24 == $this->year) || (26 == $this->result) || (29 == $this->result)) {
110 110
 
111 111
       return $this->result;
112 112
 
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
    */
122 122
   public function get() {
123 123
 
124
-    switch ( $this->type ) {
124
+    switch ($this->type) {
125 125
 
126 126
       case 'gr':
127 127
 
Please login to merge, or discard this patch.
src/Translate.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -20,6 +20,9 @@
 block discarded – undo
20 20
 
21 21
   protected $english_number = array( '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' );
22 22
 
23
+  /**
24
+   * @param \DateTime $date_time
25
+   */
23 26
   public function __construct( $date_time, $calendar, $format, $gregorian_DayofWeek ){
24 27
 
25 28
     $this->translate = include( 'lang/fa/general.php' );
Please login to merge, or discard this patch.
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -18,13 +18,13 @@  discard block
 block discarded – undo
18 18
 
19 19
   protected $gregorian_DayofWeek;
20 20
 
21
-  protected $english_number = array( '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' );
21
+  protected $english_number = array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9');
22 22
 
23
-  public function __construct( $date_time, $calendar, $format, $gregorian_DayofWeek ){
23
+  public function __construct($date_time, $calendar, $format, $gregorian_DayofWeek) {
24 24
 
25
-    $this->translate = include( 'lang/fa/general.php' );
25
+    $this->translate = include('lang/fa/general.php');
26 26
 
27
-    $this->config = include( 'config.php' );
27
+    $this->config = include('config.php');
28 28
 
29 29
     $this->date_time = $date_time;
30 30
 
@@ -38,13 +38,13 @@  discard block
 block discarded – undo
38 38
 
39 39
   }
40 40
 
41
-  protected function format( $calendar, $format ) {
41
+  protected function format($calendar, $format) {
42 42
 
43
-    $this->date_time = $this->date_time->format( $format );
43
+    $this->date_time = $this->date_time->format($format);
44 44
 
45
-    if( in_array( $calendar, $this->config['calendar'] ) ) {
45
+    if (in_array($calendar, $this->config['calendar'])) {
46 46
 
47
-    switch( $calendar ){
47
+    switch ($calendar) {
48 48
 
49 49
       case 'ir':
50 50
 
@@ -74,25 +74,25 @@  discard block
 block discarded – undo
74 74
 
75 75
   protected function translateToPersian() {
76 76
 
77
-    $this->date_time = str_replace( $this->config['month']['english'], $this->config['month']['persian'], $this->date_time );
77
+    $this->date_time = str_replace($this->config['month']['english'], $this->config['month']['persian'], $this->date_time);
78 78
 
79
-    $this->date_time = str_replace( $this->config['week_days_name']['english'], $this->config['week_days_name']['persian'][$this->gregorian_DayofWeek], $this->date_time );
79
+    $this->date_time = str_replace($this->config['week_days_name']['english'], $this->config['week_days_name']['persian'][$this->gregorian_DayofWeek], $this->date_time);
80 80
 
81
-    $this->date_time = str_replace( $this->english_number , $this->translate['number'], $this->date_time );
81
+    $this->date_time = str_replace($this->english_number, $this->translate['number'], $this->date_time);
82 82
 
83
-    $this->date_time = str_replace( $this->config['month']['persian'], $this->translate['month'], $this->date_time );
83
+    $this->date_time = str_replace($this->config['month']['persian'], $this->translate['month'], $this->date_time);
84 84
 
85
-    $this->date_time = str_replace( $this->config['week_days_name']['persian'], $this->translate['week_days_name'], $this->date_time );
85
+    $this->date_time = str_replace($this->config['week_days_name']['persian'], $this->translate['week_days_name'], $this->date_time);
86 86
 
87
-    $this->date_time = str_replace( 'th', 'ام', $this->date_time );
87
+    $this->date_time = str_replace('th', 'ام', $this->date_time);
88 88
 
89
-    $this->date_time = str_replace( 'AM', 'قبل از ظهر', $this->date_time );
89
+    $this->date_time = str_replace('AM', 'قبل از ظهر', $this->date_time);
90 90
 
91
-    $this->date_time = str_replace( 'am', 'ق.ظ', $this->date_time );
91
+    $this->date_time = str_replace('am', 'ق.ظ', $this->date_time);
92 92
 
93
-    $this->date_time = str_replace( 'PM', 'بعد از ظهر', $this->date_time );
93
+    $this->date_time = str_replace('PM', 'بعد از ظهر', $this->date_time);
94 94
 
95
-    $this->date_time = str_replace( 'pm', 'ب.ظ', $this->date_time );
95
+    $this->date_time = str_replace('pm', 'ب.ظ', $this->date_time);
96 96
 
97 97
     return $this->date_time;
98 98
 
@@ -100,9 +100,9 @@  discard block
 block discarded – undo
100 100
 
101 101
   protected function translateToArabic() {
102 102
 
103
-    $this->date_time = str_replace( $this->config['month']['english'], $this->config['month']['islamic'], $this->date_time );
103
+    $this->date_time = str_replace($this->config['month']['english'], $this->config['month']['islamic'], $this->date_time);
104 104
 
105
-    $this->date_time = str_replace( $this->config['week_days_name']['english'], $this->config['week_days_name']['islamic'][$this->gregorian_DayofWeek], $this->date_time );
105
+    $this->date_time = str_replace($this->config['week_days_name']['english'], $this->config['week_days_name']['islamic'][$this->gregorian_DayofWeek], $this->date_time);
106 106
 
107 107
     return $this->date_time;
108 108
   }
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
 
117 117
   public function get()
118 118
   {
119
-    return $this->format( $this->calendar, $this->format );
119
+    return $this->format($this->calendar, $this->format);
120 120
   }
121 121
 
122 122
 
Please login to merge, or discard this patch.
src/Config.php 2 patches
Indentation   +59 added lines, -59 removed lines patch added patch discarded remove patch
@@ -25,13 +25,13 @@  discard block
 block discarded – undo
25 25
 
26 26
   'calendar' =>  array(
27 27
 
28
-                   // iran
28
+                    // iran
29 29
                       'ir',
30 30
 
31
-                   // ghamari
31
+                    // ghamari
32 32
                       'gh',
33 33
 
34
-                   //gereogian
34
+                    //gereogian
35 35
                       'gr'
36 36
 
37 37
                       ),
@@ -49,18 +49,18 @@  discard block
 block discarded – undo
49 49
 
50 50
   'month' => array(
51 51
     'persian' => array(
52
-       'Farvardin',
53
-       'Ordibehesht',
54
-       'Khordad',
55
-       'Tir',
56
-       'Mordad' ,
57
-       'Shahrivar',
58
-       'Mehr',
59
-       'Aban',
60
-       'Azar',
61
-       'Dey',
62
-       'Bahman',
63
-       'Esfand' ),
52
+        'Farvardin',
53
+        'Ordibehesht',
54
+        'Khordad',
55
+        'Tir',
56
+        'Mordad' ,
57
+        'Shahrivar',
58
+        'Mehr',
59
+        'Aban',
60
+        'Azar',
61
+        'Dey',
62
+        'Bahman',
63
+        'Esfand' ),
64 64
 
65 65
     'english' => array(
66 66
       'January',
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
       'October',
76 76
       'November',
77 77
       'December'
78
-     ),
78
+      ),
79 79
 
80 80
   'islamic' =>
81 81
     array(  1 => 'Muharram',
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
                                           'Shanbe'
103 103
                                           ),
104 104
 
105
-                             'english' => array(
105
+                              'english' => array(
106 106
                                           'Saturday',
107 107
                                           'Sunday',
108 108
                                           'Monday',
@@ -112,56 +112,56 @@  discard block
 block discarded – undo
112 112
                                           'Friday'
113 113
                                       ),
114 114
 
115
-                             'islamic' => array(
116
-                                           'al-Aḥad',
117
-                                           'al-Ithnayn',
118
-                                           'ath-Thulatha\'',
119
-                                           'al-Arbi\'a',
120
-                                           'al-Khamees',
121
-                                           'al-Jumu\'ah',
122
-                                           'as-Sabt',
115
+                              'islamic' => array(
116
+                                            'al-Aḥad',
117
+                                            'al-Ithnayn',
118
+                                            'ath-Thulatha\'',
119
+                                            'al-Arbi\'a',
120
+                                            'al-Khamees',
121
+                                            'al-Jumu\'ah',
122
+                                            'as-Sabt',
123 123
                                           )
124 124
 
125 125
                       ),
126 126
   'shamsi_month_days' => array(      1 => 31,
127
-                                     2 => 31,
128
-                                     3 => 31,
129
-                                     4 => 31,
130
-                                     5 => 31,
131
-                                     6 => 31,
132
-                                     7 => 30,
133
-                                     8 => 30,
134
-                                     9 => 30,
135
-                                     10 => 30,
136
-                                     11 => 30,
137
-                                     12 => 29 ),
127
+                                      2 => 31,
128
+                                      3 => 31,
129
+                                      4 => 31,
130
+                                      5 => 31,
131
+                                      6 => 31,
132
+                                      7 => 30,
133
+                                      8 => 30,
134
+                                      9 => 30,
135
+                                      10 => 30,
136
+                                      11 => 30,
137
+                                      12 => 29 ),
138 138
 
139 139
 
140 140
   'gregorian_month_days' => array(   1 => 31,
141
-                                     2 => 28,
142
-                                     3 => 31,
143
-                                     4 => 30,
144
-                                     5 => 31,
145
-                                     6 => 30,
146
-                                     7 => 31,
147
-                                     8 => 31,
148
-                                     9 => 30,
149
-                                     10 => 31,
150
-                                     11 => 30,
151
-                                     12 => 30 ),
141
+                                      2 => 28,
142
+                                      3 => 31,
143
+                                      4 => 30,
144
+                                      5 => 31,
145
+                                      6 => 30,
146
+                                      7 => 31,
147
+                                      8 => 31,
148
+                                      9 => 30,
149
+                                      10 => 31,
150
+                                      11 => 30,
151
+                                      12 => 30 ),
152 152
 
153 153
   'islamic_month_days' => array(     1 => 30,
154
-                                     2 => 29,
155
-                                     3 => 30,
156
-                                     4 => 30,
157
-                                     5 => 29,
158
-                                     6 => 29,
159
-                                     7 => 30,
160
-                                     8 => 29,
161
-                                     9 => 30,
162
-                                     10 => 29,
163
-                                     11 => 30,
164
-                                     12 => 30 ),
154
+                                      2 => 29,
155
+                                      3 => 30,
156
+                                      4 => 30,
157
+                                      5 => 29,
158
+                                      6 => 29,
159
+                                      7 => 30,
160
+                                      8 => 29,
161
+                                      9 => 30,
162
+                                      10 => 29,
163
+                                      11 => 30,
164
+                                      12 => 30 ),
165 165
 
166 166
 
167 167
     'date_interval' => array( 'D', 'M', 'Y', 'H', 'm', 'S' ),
@@ -169,6 +169,6 @@  discard block
 block discarded – undo
169 169
 
170 170
     'date_simple' => array( 'day', ' month', ' year', ' hour', ' minute', ' second' ),
171 171
 
172
- );
172
+  );
173 173
 
174 174
 ?>
Please login to merge, or discard this patch.
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
        'Ordibehesht',
54 54
        'Khordad',
55 55
        'Tir',
56
-       'Mordad' ,
56
+       'Mordad',
57 57
        'Shahrivar',
58 58
        'Mehr',
59 59
        'Aban',
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
      ),
79 79
 
80 80
   'islamic' =>
81
-    array(  1 => 'Muharram',
81
+    array(1 => 'Muharram',
82 82
             2 => 'Safar',
83 83
             3 => 'Rabi I',
84 84
             4 => 'Rabi II',
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
             12 => 'Dhu al_Hijjah'
93 93
             ) ),
94 94
 
95
-  'week_days_name' => array( 'persian' => array(
95
+  'week_days_name' => array('persian' => array(
96 96
                                           'Yekshanbe',
97 97
                                           'Doshanbe',
98 98
                                           'Seshanbe',
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
                                           )
124 124
 
125 125
                       ),
126
-  'shamsi_month_days' => array(      1 => 31,
126
+  'shamsi_month_days' => array(1 => 31,
127 127
                                      2 => 31,
128 128
                                      3 => 31,
129 129
                                      4 => 31,
@@ -134,10 +134,10 @@  discard block
 block discarded – undo
134 134
                                      9 => 30,
135 135
                                      10 => 30,
136 136
                                      11 => 30,
137
-                                     12 => 29 ),
137
+                                     12 => 29),
138 138
 
139 139
 
140
-  'gregorian_month_days' => array(   1 => 31,
140
+  'gregorian_month_days' => array(1 => 31,
141 141
                                      2 => 28,
142 142
                                      3 => 31,
143 143
                                      4 => 30,
@@ -148,9 +148,9 @@  discard block
 block discarded – undo
148 148
                                      9 => 30,
149 149
                                      10 => 31,
150 150
                                      11 => 30,
151
-                                     12 => 30 ),
151
+                                     12 => 30),
152 152
 
153
-  'islamic_month_days' => array(     1 => 30,
153
+  'islamic_month_days' => array(1 => 30,
154 154
                                      2 => 29,
155 155
                                      3 => 30,
156 156
                                      4 => 30,
@@ -161,13 +161,13 @@  discard block
 block discarded – undo
161 161
                                      9 => 30,
162 162
                                      10 => 29,
163 163
                                      11 => 30,
164
-                                     12 => 30 ),
164
+                                     12 => 30),
165 165
 
166 166
 
167
-    'date_interval' => array( 'D', 'M', 'Y', 'H', 'm', 'S' ),
167
+    'date_interval' => array('D', 'M', 'Y', 'H', 'm', 'S'),
168 168
 
169 169
 
170
-    'date_simple' => array( 'day', ' month', ' year', ' hour', ' minute', ' second' ),
170
+    'date_simple' => array('day', ' month', ' year', ' hour', ' minute', ' second'),
171 171
 
172 172
  );
173 173
 
Please login to merge, or discard this patch.
src/Datium.php 4 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -351,7 +351,7 @@
 block discarded – undo
351 351
 
352 352
 }
353 353
 
354
-   $this->calendar_type = 'gh';
354
+    $this->calendar_type = 'gh';
355 355
 
356 356
     return $this;
357 357
 
Please login to merge, or discard this patch.
Switch Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -337,17 +337,17 @@
 block discarded – undo
337 337
 
338 338
 switch ( $type  ) {
339 339
 
340
-  case 'ir':
340
+    case 'ir':
341 341
 
342
-        $this->date_time = $this->convert_calendar->shamsiToGhamari( $this->date_time );
342
+          $this->date_time = $this->convert_calendar->shamsiToGhamari( $this->date_time );
343 343
 
344
-    break;
344
+      break;
345 345
 
346
-  case 'gr':
346
+    case 'gr':
347 347
 
348
-    $this->date_time = $this->convert_calendar->gregorianToGhamari( $this->date_time );
348
+      $this->date_time = $this->convert_calendar->gregorianToGhamari( $this->date_time );
349 349
 
350
-    break;
350
+      break;
351 351
 
352 352
 }
353 353
 
Please login to merge, or discard this patch.
Doc Comments   +9 added lines, -5 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
   /**
136 136
    * Get current datetime
137 137
    * @since Aug 17 2015
138
-   * @return object
138
+   * @return Datium
139 139
    */
140 140
   public static function now() {
141 141
 
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
    * @param $hour integer
154 154
    * @param $minute integer
155 155
    * @param $second integer
156
-   * @return object
156
+   * @return Datium
157 157
    */
158 158
   public static function create( $year = 2000, $month = 1, $day = 1, $hour = 0, $minute = 0, $second = 0 ) {
159 159
 
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
   /**
216 216
    * Add new date value to current date
217 217
    * @param $value string
218
-   * @return object
218
+   * @return Datium
219 219
    */
220 220
   public function add( $value ) {
221 221
 
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
   /**
233 233
    * Sub date from current date
234 234
    * @param $value
235
-   * @return obejct
235
+   * @return Datium
236 236
    */
237 237
   public function sub( $value ) {
238 238
 
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
 
249 249
   /**
250 250
    * Check if current year is leap or not
251
-   * @return boolean
251
+   * @return Leap
252 252
    */
253 253
   public function leap( $type = 'gr') {
254 254
 
@@ -288,6 +288,10 @@  discard block
 block discarded – undo
288 288
 
289 289
   }
290 290
 
291
+  /**
292
+   * @param string $calendar
293
+   * @param string $format
294
+   */
291 295
   public function translate( $calendar, $format ) {
292 296
 
293 297
     $this->date_time = new Translate( $this->date_time, $calendar, $format, $this->gregorian_DayofWeek );
Please login to merge, or discard this patch.
Spacing   +54 added lines, -54 removed lines patch added patch discarded remove patch
@@ -60,15 +60,15 @@  discard block
 block discarded – undo
60 60
 
61 61
     $this->config = include('Config.php');
62 62
 
63
-    $this->calendar_type = $this->config[ 'default_calendar' ];
63
+    $this->calendar_type = $this->config['default_calendar'];
64 64
 
65
-    date_default_timezone_set( $this->config['timezone'] );
65
+    date_default_timezone_set($this->config['timezone']);
66 66
 
67
-    switch( Datium::$call_type ) {
67
+    switch (Datium::$call_type) {
68 68
 
69 69
       case 'now':
70 70
 
71
-        $this->date_time = new DateTime( 'now' );
71
+        $this->date_time = new DateTime('now');
72 72
 
73 73
         $this->gregorian_DayofWeek = $this->date_time->format('w');
74 74
 
@@ -78,11 +78,11 @@  discard block
 block discarded – undo
78 78
 
79 79
       case 'make':
80 80
 
81
-        $this->date_time = new DateTime( 'now' );
81
+        $this->date_time = new DateTime('now');
82 82
 
83
-        $this->date_time->setDate( self::$array_date['year'], self::$array_date['month'], self::$array_date['day'] );
83
+        $this->date_time->setDate(self::$array_date['year'], self::$array_date['month'], self::$array_date['day']);
84 84
 
85
-        $this->date_time->setTime( self::$array_date['hour'], self::$array_date['minute'], self::$array_date['second'] );
85
+        $this->date_time->setTime(self::$array_date['hour'], self::$array_date['minute'], self::$array_date['second']);
86 86
 
87 87
         $this->gregorian_DayofWeek = $this->date_time->format('w');
88 88
 
@@ -116,17 +116,17 @@  discard block
 block discarded – undo
116 116
 
117 117
     return (object) array(
118 118
 
119
-      'second' => $this->date_time->format( 's' ),
119
+      'second' => $this->date_time->format('s'),
120 120
 
121
-      'minute' => $this->date_time->format( 'm' ),
121
+      'minute' => $this->date_time->format('m'),
122 122
 
123
-      'hour' => $this->date_time->format( 'H' ),
123
+      'hour' => $this->date_time->format('H'),
124 124
 
125
-      'day' => $this->date_time->format( 'd' ),
125
+      'day' => $this->date_time->format('d'),
126 126
 
127
-      'month' => $this->date_time->format( 'm' ),
127
+      'month' => $this->date_time->format('m'),
128 128
 
129
-      'year' => $this->date_time->format( 'Y' )
129
+      'year' => $this->date_time->format('Y')
130 130
 
131 131
     );
132 132
 
@@ -155,12 +155,12 @@  discard block
 block discarded – undo
155 155
    * @param $second integer
156 156
    * @return object
157 157
    */
158
-  public static function create( $year = 2000, $month = 1, $day = 1, $hour = 0, $minute = 0, $second = 0 ) {
158
+  public static function create($year = 2000, $month = 1, $day = 1, $hour = 0, $minute = 0, $second = 0) {
159 159
 
160 160
       /**
161 161
        * When we want to set a Datetime object to Datium
162 162
        */
163
-      if( func_num_args() === 1 ) {
163
+      if (func_num_args() === 1) {
164 164
 
165 165
         self::$static_date_time = func_get_arg(0);
166 166
 
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
 
169 169
       } else {
170 170
 
171
-        self::$array_date = array( 'year' => $year, 'month' => $month, 'day' => $day, 'hour' => $hour, 'minute' => $minute, 'second' => $second );
171
+        self::$array_date = array('year' => $year, 'month' => $month, 'day' => $day, 'hour' => $hour, 'minute' => $minute, 'second' => $second);
172 172
 
173 173
         self::$call_type = 'make';
174 174
 
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
 
179 179
   }
180 180
 
181
-  public static function between( $date_start, $date_end ) {
181
+  public static function between($date_start, $date_end) {
182 182
 
183 183
     self::$date_start = $date_start;
184 184
 
@@ -190,11 +190,11 @@  discard block
 block discarded – undo
190 190
 
191 191
   }
192 192
 
193
-  public function to( $calendar ) {
193
+  public function to($calendar) {
194 194
 
195
-    $this->convert = new Convert( $this->date_time );
195
+    $this->convert = new Convert($this->date_time);
196 196
 
197
-    $this->date_time = $this->convert->to( $calendar );
197
+    $this->date_time = $this->convert->to($calendar);
198 198
 
199 199
     return $this;
200 200
 
@@ -206,9 +206,9 @@  discard block
 block discarded – undo
206 206
    * @param $start datetime
207 207
    * @param $end datetime
208 208
    */
209
-  public static function diff( $start, $end ) {
209
+  public static function diff($start, $end) {
210 210
 
211
-    return date_diff( $start, $end );
211
+    return date_diff($start, $end);
212 212
 
213 213
   }
214 214
 
@@ -217,13 +217,13 @@  discard block
 block discarded – undo
217 217
    * @param $value string
218 218
    * @return object
219 219
    */
220
-  public function add( $value ) {
220
+  public function add($value) {
221 221
 
222
-    $this->date_interval_expression = str_replace( $this->config['date_simple'], $this->config['date_interval'], $value );
222
+    $this->date_interval_expression = str_replace($this->config['date_simple'], $this->config['date_interval'], $value);
223 223
 
224
-    $this->date_interval_expression = str_replace( ' ', '', 'P' . $this->date_interval_expression );
224
+    $this->date_interval_expression = str_replace(' ', '', 'P'.$this->date_interval_expression);
225 225
 
226
-    $this->date_time->add( new DateInterval( $this->date_interval_expression ) );
226
+    $this->date_time->add(new DateInterval($this->date_interval_expression));
227 227
 
228 228
     return $this;
229 229
 
@@ -234,13 +234,13 @@  discard block
 block discarded – undo
234 234
    * @param $value
235 235
    * @return obejct
236 236
    */
237
-  public function sub( $value ) {
237
+  public function sub($value) {
238 238
 
239
-    $this->date_interval_expression = str_replace( $this->config['date_simple'], $this->config['date_interval'], $value );
239
+    $this->date_interval_expression = str_replace($this->config['date_simple'], $this->config['date_interval'], $value);
240 240
 
241
-    $this->date_interval_expression = str_replace( ' ', '', 'P' . $this->date_interval_expression );
241
+    $this->date_interval_expression = str_replace(' ', '', 'P'.$this->date_interval_expression);
242 242
 
243
-    $this->date_time->sub( new DateInterval( $this->date_interval_expression ) );
243
+    $this->date_time->sub(new DateInterval($this->date_interval_expression));
244 244
 
245 245
     return $this;
246 246
 
@@ -250,9 +250,9 @@  discard block
 block discarded – undo
250 250
    * Check if current year is leap or not
251 251
    * @return boolean
252 252
    */
253
-  public function leap( $type = 'gr') {
253
+  public function leap($type = 'gr') {
254 254
 
255
-    $this->leap = new Leap( $this->date_time->format( 'Y' ), $type );
255
+    $this->leap = new Leap($this->date_time->format('Y'), $type);
256 256
 
257 257
     return $this->leap;
258 258
 
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
    */
264 264
   public function dayOf() {
265 265
 
266
-    $this->day_of = new DayOf( $this->date_time, $this->calendar_type );
266
+    $this->day_of = new DayOf($this->date_time, $this->calendar_type);
267 267
 
268 268
     return $this->day_of;
269 269
 
@@ -274,13 +274,13 @@  discard block
 block discarded – undo
274 274
    */
275 275
   public function events() {
276 276
 
277
-    if ( Datium::$call_type == 'between' ) {
277
+    if (Datium::$call_type == 'between') {
278 278
 
279
-      $this->events = new Events( Datium::$date_start, Datium::$date_end );
279
+      $this->events = new Events(Datium::$date_start, Datium::$date_end);
280 280
 
281 281
     } else {
282 282
 
283
-      $this->events = new Events( $this->date_time );
283
+      $this->events = new Events($this->date_time);
284 284
 
285 285
     }
286 286
 
@@ -288,9 +288,9 @@  discard block
 block discarded – undo
288 288
 
289 289
   }
290 290
 
291
-  public function translate( $calendar, $format ) {
291
+  public function translate($calendar, $format) {
292 292
 
293
-    $this->date_time = new Translate( $this->date_time, $calendar, $format, $this->gregorian_DayofWeek );
293
+    $this->date_time = new Translate($this->date_time, $calendar, $format, $this->gregorian_DayofWeek);
294 294
 
295 295
     return $this->date_time;
296 296
 
@@ -337,19 +337,19 @@  discard block
 block discarded – undo
337 337
   //
338 338
   // }
339 339
 
340
-  public function toShamsi( $type = 'gr' ) {
340
+  public function toShamsi($type = 'gr') {
341 341
 
342
-    switch ( $type ) {
342
+    switch ($type) {
343 343
 
344 344
       case 'gr':
345 345
 
346
-           $this->date_time = $this->convert_calendar->gregorianToShamsi( $this->date_time );
346
+           $this->date_time = $this->convert_calendar->gregorianToShamsi($this->date_time);
347 347
 
348 348
         break;
349 349
 
350 350
       case 'gh':
351 351
 
352
-            $this->date_time = $this->convert_calendar->ghamariToShamsi( $this->date_time );
352
+            $this->date_time = $this->convert_calendar->ghamariToShamsi($this->date_time);
353 353
 
354 354
         break;
355 355
     }
@@ -360,19 +360,19 @@  discard block
 block discarded – undo
360 360
 
361 361
   }
362 362
 
363
-  public function toGhamari( $type = 'gr') {
363
+  public function toGhamari($type = 'gr') {
364 364
 
365
-switch ( $type  ) {
365
+switch ($type) {
366 366
 
367 367
   case 'ir':
368 368
 
369
-        $this->date_time = $this->convert_calendar->shamsiToGhamari( $this->date_time );
369
+        $this->date_time = $this->convert_calendar->shamsiToGhamari($this->date_time);
370 370
 
371 371
     break;
372 372
 
373 373
   case 'gr':
374 374
 
375
-    $this->date_time = $this->convert_calendar->gregorianToGhamari( $this->date_time );
375
+    $this->date_time = $this->convert_calendar->gregorianToGhamari($this->date_time);
376 376
 
377 377
     break;
378 378
 
@@ -384,19 +384,19 @@  discard block
 block discarded – undo
384 384
 
385 385
   }
386 386
 
387
-  public function toGregorian( $type = 'gr' ) {
387
+  public function toGregorian($type = 'gr') {
388 388
 
389
-    switch ( $type ) {
389
+    switch ($type) {
390 390
 
391 391
       case 'ir':
392 392
 
393
-        $this->date_time = $this->convert_calendar->shamsiToGregorian( $this->date_time );
393
+        $this->date_time = $this->convert_calendar->shamsiToGregorian($this->date_time);
394 394
 
395 395
         break;
396 396
 
397 397
       case 'gh':
398 398
 
399
-        $this->date_time = $this->convert_calendar->ghamariToGregorian( $this->date_time );
399
+        $this->date_time = $this->convert_calendar->ghamariToGregorian($this->date_time);
400 400
 
401 401
       case 'gr':
402 402
 
@@ -421,7 +421,7 @@  discard block
 block discarded – undo
421 421
    *
422 422
    *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
423 423
    */
424
-  public function object(){
424
+  public function object() {
425 425
 
426 426
     return $this->date_time;
427 427
 
@@ -433,11 +433,11 @@  discard block
 block discarded – undo
433 433
    * @param $calendar string
434 434
    * @param $format string
435 435
    */
436
-  public function get( $format = 'Y-m-d H:i:s' ) {
436
+  public function get($format = 'Y-m-d H:i:s') {
437 437
 
438
-    if( in_array( $this->calendar_type, $this->config[ 'calendar' ] ) ){
438
+    if (in_array($this->calendar_type, $this->config['calendar'])) {
439 439
 
440
-        return $this->translate( $this->calendar_type, $format )->get();
440
+        return $this->translate($this->calendar_type, $format)->get();
441 441
 
442 442
     }
443 443
 
Please login to merge, or discard this patch.
src/Events/Global/global.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      * @link http://www.un.org/en/sections/observances/international-days/
14 14
      */
15 15
     'events' => array(
16
-      1 => array( 27 => 'International Day of Commemoration in Memory of the Victims of the Holocaust' ),
16
+      1 => array(27 => 'International Day of Commemoration in Memory of the Victims of the Holocaust'),
17 17
       2 => array(
18 18
         4 => 'World Cancer Day',
19 19
         6 => 'International Day of Zero Tolerance to Female Genital Mutilation',
Please login to merge, or discard this patch.
src/Events/Localization/ir.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
      * as a arraye value
13 13
      */
14 14
     'events' => array(
15
-      1 => array( 1 => 'nowruz', 2 => 'nowruz', 3 => 'nowruz', 5 => 'nowruz' ),
16
-      10 => array( 22 => 'Iran revelution day' ),
17
-      12 => array( 29 => 'Iran oil national day' )
15
+      1 => array(1 => 'nowruz', 2 => 'nowruz', 3 => 'nowruz', 5 => 'nowruz'),
16
+      10 => array(22 => 'Iran revelution day'),
17
+      12 => array(29 => 'Iran oil national day')
18 18
     ),
19 19
 
20 20
 );
Please login to merge, or discard this patch.