Completed
Push — master ( 83e858...0b41d4 )
by
unknown
02:03
created
src/Convert.php 2 patches
Spacing   +65 added lines, -65 removed lines patch added patch discarded remove patch
@@ -63,23 +63,23 @@  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
   }
77 77
 
78
-  public function from( $calendar ) {
78
+  public function from($calendar) {
79 79
 
80
-    $this->calendar_file = include( 'CalendarSettings/' . ucfirst( $calendar ) . '.php' );
80
+    $this->calendar_file = include('CalendarSettings/'.ucfirst($calendar).'.php');
81 81
 
82
-    return $this->calendar_file[ 'convert_from' ]( $this->date_time );
82
+    return $this->calendar_file['convert_from']($this->date_time);
83 83
 
84 84
   }
85 85
 
@@ -91,11 +91,11 @@  discard block
 block discarded – undo
91 91
    *
92 92
    *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
93 93
    */
94
-  public function to( $calendar ) {
94
+  public function to($calendar) {
95 95
 
96
-    $this->calendar_file = include( 'CalendarSettings/' . ucfirst( $calendar ) . '.php' );
96
+    $this->calendar_file = include('CalendarSettings/'.ucfirst($calendar).'.php');
97 97
 
98
-    return $this->calendar_file[ 'convert_to' ]( $this->date_time );
98
+    return $this->calendar_file['convert_to']($this->date_time);
99 99
 
100 100
   }
101 101
 
@@ -104,9 +104,9 @@  discard block
 block discarded – undo
104 104
    * @since Oct, 16 2015
105 105
    * @return object
106 106
    */
107
-public function jalaliToGregorian( $date_time ) {
107
+public function jalaliToGregorian($date_time) {
108 108
 
109
-  $this->config = include( 'Jalali.php' );
109
+  $this->config = include('Jalali.php');
110 110
 
111 111
   $this->date_time = $date_time;
112 112
 
@@ -118,41 +118,41 @@  discard block
 block discarded – undo
118 118
 
119 119
   $days_of_year = 0;
120 120
 
121
-  foreach ( $this->config['month_days_number'] as $month => $value ) {
121
+  foreach ($this->config['month_days_number'] as $month => $value) {
122 122
 
123
-    if( $this->month > $month ) $days_of_year += $value;
123
+    if ($this->month > $month) $days_of_year += $value;
124 124
 
125 125
   }
126 126
 
127 127
   $days_of_year += $this->day;
128 128
 
129
-  $days_of_leap_years =  intval( ( ( $this->year - 1 ) / 4 )  );
129
+  $days_of_leap_years = intval((($this->year - 1) / 4));
130 130
 
131
-  $days_of_jalali_years = ( ( ( $this->year - 1 ) * 365 ) + $days_of_year + $days_of_leap_years );
131
+  $days_of_jalali_years = ((($this->year - 1) * 365) + $days_of_year + $days_of_leap_years);
132 132
 
133 133
   $days_of_gregorain_years = $days_of_jalali_years + 226899;
134 134
 
135
-    if ( $this->month < 10 )  {
135
+    if ($this->month < 10) {
136 136
 
137
-      $days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $this->year + 621 ) / 4 ) );
137
+      $days_of_gregorain_years = $days_of_gregorain_years - intval((($this->year + 621) / 4));
138 138
 
139 139
     }
140 140
 
141
-    elseif ( ( ( 10 == $this->month ) && ( $this->day > 10 ) ) || ( $this->month > 10 ) ) {
141
+    elseif (((10 == $this->month) && ($this->day > 10)) || ($this->month > 10)) {
142 142
 
143
-      $days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $this->year + 622 ) / 4 ) );
143
+      $days_of_gregorain_years = $days_of_gregorain_years - intval((($this->year + 622) / 4));
144 144
 
145 145
     }
146 146
 
147
-    $gregorian_month = ( $days_of_gregorain_years % 365 );
147
+    $gregorian_month = ($days_of_gregorain_years % 365);
148 148
 
149
-    $gregorian_year = intval( $days_of_gregorain_years / 365 ) + 1;
149
+    $gregorian_year = intval($days_of_gregorain_years / 365) + 1;
150 150
 
151
-    $this->config = include( 'Gregorian.php' );
151
+    $this->config = include('Gregorian.php');
152 152
 
153 153
     foreach ($this->config['month_days_number'] as $month => $value) {
154 154
 
155
-      if ( $gregorian_month < $value ) break;
155
+      if ($gregorian_month < $value) break;
156 156
 
157 157
       $gregorian_month -= $value;
158 158
     }
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
 
162 162
   $gregorian_month = $month;
163 163
 
164
-  $this->date_time->setDate( $gregorian_year, $gregorian_month, $gregorian_day );
164
+  $this->date_time->setDate($gregorian_year, $gregorian_month, $gregorian_day);
165 165
 
166 166
 
167 167
  return $this->date_time;
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
    * @since Oct, 17 2015
174 174
    * @return object
175 175
    */
176
-public function jalaliToHijri( $date_time ) {
176
+public function jalaliToHijri($date_time) {
177 177
 
178 178
     $this->date_time = $date_time;
179 179
 
@@ -183,11 +183,11 @@  discard block
 block discarded – undo
183 183
 
184 184
     $this->day = $this->date_time->format('d');
185 185
 
186
-    $this->temp_day = 0 ;
186
+    $this->temp_day = 0;
187 187
 
188
-    $this->config = include( 'Jalali.php' );
188
+    $this->config = include('Jalali.php');
189 189
 
190
-    for ( $i = 1 ; $i < $this->month ; $i++ ) {
190
+    for ($i = 1; $i < $this->month; $i++) {
191 191
 
192 192
         $this->temp_day += $this->config['month_days_number'][$i];
193 193
 
@@ -195,13 +195,13 @@  discard block
 block discarded – undo
195 195
 
196 196
      $this->temp_day += $this->day;
197 197
 
198
-     $this->leap = new Leap( $this->year );
198
+     $this->leap = new Leap($this->year);
199 199
 
200
-    if( $this->leap->get() && $this->month > 11 ) $this->temp_day++;
200
+    if ($this->leap->get() && $this->month > 11) $this->temp_day++;
201 201
 
202
-    $_year = ( ( ( ( ( $this->year - 1 ) * 365.2422 ) + $this->temp_day ) - 119) / 354.3670 ) + 1;
202
+    $_year = ((((($this->year - 1) * 365.2422) + $this->temp_day) - 119) / 354.3670) + 1;
203 203
 
204
-    $_year = explode( '.', $_year );
204
+    $_year = explode('.', $_year);
205 205
 
206 206
     $this->year = $_year[0];
207 207
 
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
 
210 210
      $var_temp = '0.0';
211 211
 
212
-      for ( $i = strlen( $_month ); $i > 2; $i-- ) {
212
+      for ($i = strlen($_month); $i > 2; $i--) {
213 213
 
214 214
         $var_temp .= '0';
215 215
 
@@ -217,11 +217,11 @@  discard block
 block discarded – undo
217 217
 
218 218
      $var_temp .= '1';
219 219
 
220
-    $_month = $_month * $var_temp ;
220
+    $_month = $_month * $var_temp;
221 221
 
222
-    $_month = ( $_month * 12 ) + 1;
222
+    $_month = ($_month * 12) + 1;
223 223
 
224
-    $_month = explode( '.', $_month );
224
+    $_month = explode('.', $_month);
225 225
 
226 226
     $this->month = $_month[0];
227 227
 
@@ -229,9 +229,9 @@  discard block
 block discarded – undo
229 229
 
230 230
     $var_temp = '0.0';
231 231
 
232
-    for ( $i = strlen( $_day );  $i > 2;  $i-- ) {
232
+    for ($i = strlen($_day); $i > 2; $i--) {
233 233
 
234
-       $var_temp .= '0' ;
234
+       $var_temp .= '0';
235 235
 
236 236
     }
237 237
 
@@ -239,13 +239,13 @@  discard block
 block discarded – undo
239 239
 
240 240
     $_day = $_day * $var_temp;
241 241
 
242
-    $_day = ( $_day * 29.530 );
242
+    $_day = ($_day * 29.530);
243 243
 
244
-    $_day = explode( '.', $_day );
244
+    $_day = explode('.', $_day);
245 245
 
246 246
     $this->day = $_day[0];
247 247
 
248
-   $this->date_time->setDate( $this->year, $this->month, $this->day );
248
+   $this->date_time->setDate($this->year, $this->month, $this->day);
249 249
 
250 250
    return $this->date_time;
251 251
 
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
    * @since Oct, 17 2015
257 257
    * @return object
258 258
    */
259
-public function hijriToJalali( $date_time ) {
259
+public function hijriToJalali($date_time) {
260 260
 
261 261
   $this->date_time = $date_time;
262 262
 
@@ -268,33 +268,33 @@  discard block
 block discarded – undo
268 268
 
269 269
   $days_of_year = 0;
270 270
 
271
-  $this->config = include( 'Hijri.php' );
271
+  $this->config = include('Hijri.php');
272 272
 
273
-  foreach ( $this->config['month_days_number'] as $month => $value ) {
273
+  foreach ($this->config['month_days_number'] as $month => $value) {
274 274
 
275
-    if( $this->month > $month ) $days_of_year += $value;
275
+    if ($this->month > $month) $days_of_year += $value;
276 276
 
277 277
   }
278 278
 
279 279
   $days_of_year += $this->day;
280 280
 
281
-  $days_of_leap_years =  intval( ( ( $this->year - 1 ) / 3 )  );
281
+  $days_of_leap_years = intval((($this->year - 1) / 3));
282 282
 
283
-  $days_of_hijri_years = ( ( ( $this->year - 1 ) * 354 ) + $days_of_year + $days_of_leap_years );
283
+  $days_of_hijri_years = ((($this->year - 1) * 354) + $days_of_year + $days_of_leap_years);
284 284
 
285 285
   $days_of_jalali_years = $days_of_hijri_years + 179;
286 286
 
287
-  $days_of_jalali_years = $days_of_jalali_years - intval( ( ( $this->year - 43 ) / 4 ) );
287
+  $days_of_jalali_years = $days_of_jalali_years - intval((($this->year - 43) / 4));
288 288
 
289
-  $jalali_month = ( $days_of_jalali_years % 365 );
289
+  $jalali_month = ($days_of_jalali_years % 365);
290 290
 
291
-  $jalali_year = intval( $days_of_jalali_years / 365 ) + 1;
291
+  $jalali_year = intval($days_of_jalali_years / 365) + 1;
292 292
 
293
-  $this->config = include( 'Jalali.php' );
293
+  $this->config = include('Jalali.php');
294 294
 
295 295
   foreach ($this->config['month_days_number'] as $month => $value) {
296 296
 
297
-    if ( $jalali_month < $value ) break;
297
+    if ($jalali_month < $value) break;
298 298
 
299 299
       $jalali_month -= $value;
300 300
   }
@@ -303,7 +303,7 @@  discard block
 block discarded – undo
303 303
 
304 304
   $jalali_month = $month;
305 305
 
306
-  $this->date_time->setDate( $jalali_year, $jalali_month, $jalali_day );
306
+  $this->date_time->setDate($jalali_year, $jalali_month, $jalali_day);
307 307
 
308 308
  return $this->date_time;
309 309
 
@@ -314,7 +314,7 @@  discard block
 block discarded – undo
314 314
     * @since Oct, 17 2015
315 315
     * @return object
316 316
     */
317
-  public function hijriToGregorian( $date_time ) {
317
+  public function hijriToGregorian($date_time) {
318 318
 
319 319
     $this->date_time = $date_time;
320 320
 
@@ -326,33 +326,33 @@  discard block
 block discarded – undo
326 326
 
327 327
     $days_of_year = 0;
328 328
 
329
-    $this->config = include( 'Hijri.php' );
329
+    $this->config = include('Hijri.php');
330 330
 
331
-    foreach ( $this->config['month_days_number'] as $month => $value ) {
331
+    foreach ($this->config['month_days_number'] as $month => $value) {
332 332
 
333
-      if( $this->month > $month ) $days_of_year += $value;
333
+      if ($this->month > $month) $days_of_year += $value;
334 334
 
335 335
     }
336 336
 
337 337
     $days_of_year += $this->day;
338 338
 
339
-    $days_of_leap_years =  intval( ( ( $this->year - 1 ) / 3 )  );
339
+    $days_of_leap_years = intval((($this->year - 1) / 3));
340 340
 
341
-    $days_of_hijri_years = ( ( ( $this->year - 1 ) * 354 ) + $days_of_year + $days_of_leap_years );
341
+    $days_of_hijri_years = ((($this->year - 1) * 354) + $days_of_year + $days_of_leap_years);
342 342
 
343 343
     $days_of_gregorain_years = $days_of_hijri_years + 227078;
344 344
 
345
-    $days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $this->year + 578 ) / 4 ) );
345
+    $days_of_gregorain_years = $days_of_gregorain_years - intval((($this->year + 578) / 4));
346 346
 
347
-    $gregorian_month = ( $days_of_gregorain_years % 365 );
347
+    $gregorian_month = ($days_of_gregorain_years % 365);
348 348
 
349
-    $gregorian_year = intval( $days_of_gregorain_years / 365 ) + 1;
349
+    $gregorian_year = intval($days_of_gregorain_years / 365) + 1;
350 350
 
351
-    $this->config = include( 'Gregorian.php' );
351
+    $this->config = include('Gregorian.php');
352 352
 
353 353
     foreach ($this->config['month_days_number'] as $month => $value) {
354 354
 
355
-      if ( $gregorian_month < $value ) break;
355
+      if ($gregorian_month < $value) break;
356 356
 
357 357
         $gregorian_month -= $value;
358 358
     }
@@ -361,7 +361,7 @@  discard block
 block discarded – undo
361 361
 
362 362
       $gregorian_month = $month;
363 363
 
364
-      $this->date_time->setDate( $gregorian_year, $gregorian_month, $gregorian_day );
364
+      $this->date_time->setDate($gregorian_year, $gregorian_month, $gregorian_day);
365 365
 
366 366
      return $this->date_time;
367 367
 
Please login to merge, or discard this patch.
Braces   +22 added lines, -10 removed lines patch added patch discarded remove patch
@@ -120,7 +120,9 @@  discard block
 block discarded – undo
120 120
 
121 121
   foreach ( $this->config['month_days_number'] as $month => $value ) {
122 122
 
123
-    if( $this->month > $month ) $days_of_year += $value;
123
+    if( $this->month > $month ) {
124
+      $days_of_year += $value;
125
+    }
124 126
 
125 127
   }
126 128
 
@@ -136,9 +138,7 @@  discard block
 block discarded – undo
136 138
 
137 139
       $days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $this->year + 621 ) / 4 ) );
138 140
 
139
-    }
140
-
141
-    elseif ( ( ( 10 == $this->month ) && ( $this->day > 10 ) ) || ( $this->month > 10 ) ) {
141
+    } elseif ( ( ( 10 == $this->month ) && ( $this->day > 10 ) ) || ( $this->month > 10 ) ) {
142 142
 
143 143
       $days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $this->year + 622 ) / 4 ) );
144 144
 
@@ -152,7 +152,9 @@  discard block
 block discarded – undo
152 152
 
153 153
     foreach ($this->config['month_days_number'] as $month => $value) {
154 154
 
155
-      if ( $gregorian_month < $value ) break;
155
+      if ( $gregorian_month < $value ) {
156
+        break;
157
+      }
156 158
 
157 159
       $gregorian_month -= $value;
158 160
     }
@@ -197,7 +199,9 @@  discard block
 block discarded – undo
197 199
 
198 200
      $this->leap = new Leap( $this->year );
199 201
 
200
-    if( $this->leap->get() && $this->month > 11 ) $this->temp_day++;
202
+    if( $this->leap->get() && $this->month > 11 ) {
203
+      $this->temp_day++;
204
+    }
201 205
 
202 206
     $_year = ( ( ( ( ( $this->year - 1 ) * 365.2422 ) + $this->temp_day ) - 119) / 354.3670 ) + 1;
203 207
 
@@ -272,7 +276,9 @@  discard block
 block discarded – undo
272 276
 
273 277
   foreach ( $this->config['month_days_number'] as $month => $value ) {
274 278
 
275
-    if( $this->month > $month ) $days_of_year += $value;
279
+    if( $this->month > $month ) {
280
+      $days_of_year += $value;
281
+    }
276 282
 
277 283
   }
278 284
 
@@ -294,7 +300,9 @@  discard block
 block discarded – undo
294 300
 
295 301
   foreach ($this->config['month_days_number'] as $month => $value) {
296 302
 
297
-    if ( $jalali_month < $value ) break;
303
+    if ( $jalali_month < $value ) {
304
+      break;
305
+    }
298 306
 
299 307
       $jalali_month -= $value;
300 308
   }
@@ -330,7 +338,9 @@  discard block
 block discarded – undo
330 338
 
331 339
     foreach ( $this->config['month_days_number'] as $month => $value ) {
332 340
 
333
-      if( $this->month > $month ) $days_of_year += $value;
341
+      if( $this->month > $month ) {
342
+        $days_of_year += $value;
343
+      }
334 344
 
335 345
     }
336 346
 
@@ -352,7 +362,9 @@  discard block
 block discarded – undo
352 362
 
353 363
     foreach ($this->config['month_days_number'] as $month => $value) {
354 364
 
355
-      if ( $gregorian_month < $value ) break;
365
+      if ( $gregorian_month < $value ) {
366
+        break;
367
+      }
356 368
 
357 369
         $gregorian_month -= $value;
358 370
     }
Please login to merge, or discard this patch.
src/Datium.php 1 patch
Spacing   +59 added lines, -59 removed lines patch added patch discarded remove patch
@@ -80,17 +80,17 @@  discard block
 block discarded – undo
80 80
 
81 81
     $this->config = include('Config.php');
82 82
 
83
-    $this->calendar_type = $this->config[ 'default_calendar' ];
83
+    $this->calendar_type = $this->config['default_calendar'];
84 84
 
85
-    date_default_timezone_set( $this->config['timezone'] );
85
+    date_default_timezone_set($this->config['timezone']);
86 86
 
87 87
     $this->calendar_type = 'gregorian';
88 88
 
89
-    switch( Datium::$call_type ) {
89
+    switch (Datium::$call_type) {
90 90
 
91 91
       case 'now':
92 92
 
93
-        $this->date_time = new DateTime( 'now' );
93
+        $this->date_time = new DateTime('now');
94 94
 
95 95
         $this->gregorian_DayofWeek = $this->date_time->format('w');
96 96
 
@@ -98,11 +98,11 @@  discard block
 block discarded – undo
98 98
 
99 99
       case 'make':
100 100
 
101
-        $this->date_time = new DateTime( 'now' );
101
+        $this->date_time = new DateTime('now');
102 102
 
103
-        $this->date_time->setDate( self::$array_date['year'], self::$array_date['month'], self::$array_date['day'] );
103
+        $this->date_time->setDate(self::$array_date['year'], self::$array_date['month'], self::$array_date['day']);
104 104
 
105
-        $this->date_time->setTime( self::$array_date['hour'], self::$array_date['minute'], self::$array_date['second'] );
105
+        $this->date_time->setTime(self::$array_date['hour'], self::$array_date['minute'], self::$array_date['second']);
106 106
 
107 107
         $this->gregorian_DayofWeek = $this->date_time->format('w');
108 108
 
@@ -131,17 +131,17 @@  discard block
 block discarded – undo
131 131
 
132 132
     return (object) array(
133 133
 
134
-      'second' => $this->date_time->format( 's' ),
134
+      'second' => $this->date_time->format('s'),
135 135
 
136
-      'minute' => $this->date_time->format( 'm' ),
136
+      'minute' => $this->date_time->format('m'),
137 137
 
138
-      'hour' => $this->date_time->format( 'H' ),
138
+      'hour' => $this->date_time->format('H'),
139 139
 
140
-      'day' => $this->date_time->format( 'd' ),
140
+      'day' => $this->date_time->format('d'),
141 141
 
142
-      'month' => $this->date_time->format( 'm' ),
142
+      'month' => $this->date_time->format('m'),
143 143
 
144
-      'year' => $this->date_time->format( 'Y' )
144
+      'year' => $this->date_time->format('Y')
145 145
 
146 146
     );
147 147
 
@@ -170,12 +170,12 @@  discard block
 block discarded – undo
170 170
    * @param $second integer
171 171
    * @return object
172 172
    */
173
-  public static function create( $year = 2000, $month = 1, $day = 1, $hour = 0, $minute = 0, $second = 0 ) {
173
+  public static function create($year = 2000, $month = 1, $day = 1, $hour = 0, $minute = 0, $second = 0) {
174 174
 
175 175
       /**
176 176
        * When we want to set a Datetime object to Datium
177 177
        */
178
-      if( func_num_args() === 1 ) {
178
+      if (func_num_args() === 1) {
179 179
 
180 180
         self::$static_date_time = func_get_arg(0);
181 181
 
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
 
184 184
       } else {
185 185
 
186
-        self::$array_date = array( 'year' => $year, 'month' => $month, 'day' => $day, 'hour' => $hour, 'minute' => $minute, 'second' => $second );
186
+        self::$array_date = array('year' => $year, 'month' => $month, 'day' => $day, 'hour' => $hour, 'minute' => $minute, 'second' => $second);
187 187
 
188 188
         self::$call_type = 'make';
189 189
 
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
 
194 194
   }
195 195
 
196
-  public static function between( $date_start, $date_end ) {
196
+  public static function between($date_start, $date_end) {
197 197
 
198 198
     self::$date_start = $date_start;
199 199
 
@@ -208,11 +208,11 @@  discard block
 block discarded – undo
208 208
   /**
209 209
    * Convert from current calendar, what type is current calendar?
210 210
    */
211
-  public function from( $calendar ) {
211
+  public function from($calendar) {
212 212
 
213
-    $this->convert = new Convert( $this->date_time );
213
+    $this->convert = new Convert($this->date_time);
214 214
 
215
-    $this->date_time = $this->convert->from( $calendar );
215
+    $this->date_time = $this->convert->from($calendar);
216 216
 
217 217
 
218 218
     /**
@@ -226,11 +226,11 @@  discard block
 block discarded – undo
226 226
 
227 227
   }
228 228
 
229
-  public function to( $calendar ) {
229
+  public function to($calendar) {
230 230
 
231
-    $this->convert = new Convert( $this->date_time );
231
+    $this->convert = new Convert($this->date_time);
232 232
 
233
-    $this->date_time = $this->convert->to( $calendar );
233
+    $this->date_time = $this->convert->to($calendar);
234 234
 
235 235
     /**
236 236
      * We need this part for DayOf class
@@ -249,9 +249,9 @@  discard block
 block discarded – undo
249 249
    * @param $start datetime
250 250
    * @param $end datetime
251 251
    */
252
-  public static function diff( $start, $end ) {
252
+  public static function diff($start, $end) {
253 253
 
254
-    return date_diff( $start, $end );
254
+    return date_diff($start, $end);
255 255
 
256 256
   }
257 257
 
@@ -260,13 +260,13 @@  discard block
 block discarded – undo
260 260
    * @param $value string
261 261
    * @return object
262 262
    */
263
-  public function add( $value ) {
263
+  public function add($value) {
264 264
 
265
-    $this->date_interval_expression = str_replace( $this->config['date_simple'], $this->config['date_interval'], $value );
265
+    $this->date_interval_expression = str_replace($this->config['date_simple'], $this->config['date_interval'], $value);
266 266
 
267
-    $this->date_interval_expression = str_replace( ' ', '', 'P' . $this->date_interval_expression );
267
+    $this->date_interval_expression = str_replace(' ', '', 'P'.$this->date_interval_expression);
268 268
 
269
-    $this->date_time->add( new DateInterval( $this->date_interval_expression ) );
269
+    $this->date_time->add(new DateInterval($this->date_interval_expression));
270 270
 
271 271
     return $this;
272 272
 
@@ -277,13 +277,13 @@  discard block
 block discarded – undo
277 277
    * @param $value
278 278
    * @return obejct
279 279
    */
280
-  public function sub( $value ) {
280
+  public function sub($value) {
281 281
 
282
-    $this->date_interval_expression = str_replace( $this->config['date_simple'], $this->config['date_interval'], $value );
282
+    $this->date_interval_expression = str_replace($this->config['date_simple'], $this->config['date_interval'], $value);
283 283
 
284
-    $this->date_interval_expression = str_replace( ' ', '', 'P' . $this->date_interval_expression );
284
+    $this->date_interval_expression = str_replace(' ', '', 'P'.$this->date_interval_expression);
285 285
 
286
-    $this->date_time->sub( new DateInterval( $this->date_interval_expression ) );
286
+    $this->date_time->sub(new DateInterval($this->date_interval_expression));
287 287
 
288 288
     return $this;
289 289
 
@@ -293,9 +293,9 @@  discard block
 block discarded – undo
293 293
    * Check if current year is leap or not
294 294
    * @return boolean
295 295
    */
296
-  public function leap( $type = 'gregorian') {
296
+  public function leap($type = 'gregorian') {
297 297
 
298
-    $this->leap = new Leap( $this->date_time->format( 'Y' ), $type );
298
+    $this->leap = new Leap($this->date_time->format('Y'), $type);
299 299
 
300 300
     return $this->leap;
301 301
 
@@ -306,7 +306,7 @@  discard block
 block discarded – undo
306 306
    */
307 307
   public function dayOf() {
308 308
 
309
-    $this->day_of = new DayOf( $this->date_time, $this->calendar_type );
309
+    $this->day_of = new DayOf($this->date_time, $this->calendar_type);
310 310
 
311 311
     return $this->day_of;
312 312
 
@@ -317,13 +317,13 @@  discard block
 block discarded – undo
317 317
    */
318 318
   public function events() {
319 319
 
320
-    if ( Datium::$call_type == 'between' ) {
320
+    if (Datium::$call_type == 'between') {
321 321
 
322
-      $this->events = new Events( Datium::$date_start, Datium::$date_end );
322
+      $this->events = new Events(Datium::$date_start, Datium::$date_end);
323 323
 
324 324
     } else {
325 325
 
326
-      $this->events = new Events( $this->date_time );
326
+      $this->events = new Events($this->date_time);
327 327
 
328 328
     }
329 329
 
@@ -340,19 +340,19 @@  discard block
 block discarded – undo
340 340
    *
341 341
    *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
342 342
    */
343
-  public function object(){
343
+  public function object() {
344 344
 
345 345
     return $this->date_time;
346 346
 
347 347
   }
348 348
 
349
-  public function lang( $language = 'fa' ){
349
+  public function lang($language = 'fa') {
350 350
 
351 351
     $this->language = $language;
352 352
 
353 353
     $this->result = new Lang();
354 354
 
355
-    $this->result->setConfig( $this->language );
355
+    $this->result->setConfig($this->language);
356 356
 
357 357
     $this->toConfig = $this->result->getConfig();
358 358
 
@@ -366,46 +366,46 @@  discard block
 block discarded – undo
366 366
    * @param $calendar string
367 367
    * @param $format string
368 368
    */
369
-  public function get( $format = 'Y-m-d H:i:s' ) {
369
+  public function get($format = 'Y-m-d H:i:s') {
370 370
 
371
-    $this->translate_from_file = include( 'Lang/en/general.php' );
371
+    $this->translate_from_file = include('Lang/en/general.php');
372 372
 
373
-    $this->translate_to_file = include( 'Lang/' . $this->language . '/general.php' );
373
+    $this->translate_to_file = include('Lang/'.$this->language.'/general.php');
374 374
 
375
-    if ( is_null( $this->fromConfig ) ) {
375
+    if (is_null($this->fromConfig)) {
376 376
 
377
-      $this->fromConfig = include( 'CalendarSettings/' . ucfirst( $this->translate_from ) . '.php' );
377
+      $this->fromConfig = include('CalendarSettings/'.ucfirst($this->translate_from).'.php');
378 378
 
379 379
     }
380 380
 
381 381
 
382
-    if ( is_null( $this->toConfig ) ) {
382
+    if (is_null($this->toConfig)) {
383 383
 
384
-      $this->toConfig = include( 'CalendarSettings/' . ucfirst( $this->translate_to ) . '.php' );
384
+      $this->toConfig = include('CalendarSettings/'.ucfirst($this->translate_to).'.php');
385 385
 
386 386
     }
387 387
 
388
-      $string_date = $this->date_time->format( $format );
388
+      $string_date = $this->date_time->format($format);
389 389
 
390
-      if ( $this->translate_to != 'gregorian' ) {
390
+      if ($this->translate_to != 'gregorian') {
391 391
 
392
-      $string_date = str_replace( $this->fromConfig['month'], $this->toConfig['month'],  $string_date );
392
+      $string_date = str_replace($this->fromConfig['month'], $this->toConfig['month'], $string_date);
393 393
 
394
-      $string_date = str_replace( $this->fromConfig['days_of_week'], $this->toConfig['days_of_week'][$this->gregorian_DayofWeek], $string_date );
394
+      $string_date = str_replace($this->fromConfig['days_of_week'], $this->toConfig['days_of_week'][$this->gregorian_DayofWeek], $string_date);
395 395
 
396
-      $string_date = str_replace( $this->fromConfig['numbers'], $this->toConfig['numbers'], $string_date );
396
+      $string_date = str_replace($this->fromConfig['numbers'], $this->toConfig['numbers'], $string_date);
397 397
 
398
-      $string_date = str_replace( $this->fromConfig['am_time'], $this->toConfig['am_time'], $string_date );
398
+      $string_date = str_replace($this->fromConfig['am_time'], $this->toConfig['am_time'], $string_date);
399 399
 
400
-      $string_date = str_replace( $this->fromConfig['pm_time'], $this->toConfig['pm_time'], $string_date );
400
+      $string_date = str_replace($this->fromConfig['pm_time'], $this->toConfig['pm_time'], $string_date);
401 401
 
402
-      $string_date = str_replace( $this->fromConfig['end_of_days'], $this->toConfig['end_of_days'], $string_date );
402
+      $string_date = str_replace($this->fromConfig['end_of_days'], $this->toConfig['end_of_days'], $string_date);
403 403
 
404 404
     }
405 405
 
406
-    foreach( $this->translate_to_file as $key => $value ) {
406
+    foreach ($this->translate_to_file as $key => $value) {
407 407
 
408
-      $string_date = str_replace( $this->translate_from_file[ $key ], $this->translate_to_file[ $key ], $string_date );
408
+      $string_date = str_replace($this->translate_from_file[$key], $this->translate_to_file[$key], $string_date);
409 409
 
410 410
     }
411 411
 
Please login to merge, or discard this patch.
src/Lang.php 2 patches
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -40,26 +40,26 @@
 block discarded – undo
40 40
       /**
41 41
        * Fetch translated file to config attribute
42 42
        */
43
-       self::$config = include('src/CalendarSettings/Jalali.php');
43
+        self::$config = include('src/CalendarSettings/Jalali.php');
44 44
 
45
-       /**
46
-        * Fetch translated expression to langTable attribute
47
-        */
48
-       self::$langTable = include('lang/' . $language . '/general.php');
45
+        /**
46
+         * Fetch translated expression to langTable attribute
47
+         */
48
+        self::$langTable = include('lang/' . $language . '/general.php');
49 49
 
50
-       foreach( self::$langTable as $key => $translate ){
50
+        foreach( self::$langTable as $key => $translate ){
51 51
 
52
-         if ( isset( self::$config[ $key ] ) ) {
52
+          if ( isset( self::$config[ $key ] ) ) {
53 53
 
54
-           if ( self::$config[ $key ] ) {
54
+            if ( self::$config[ $key ] ) {
55 55
 
56
-             self::$config[ $key ] = $translate;
56
+              self::$config[ $key ] = $translate;
57 57
 
58
-           }
58
+            }
59 59
 
60
-         }
60
+          }
61 61
 
62
-       }
62
+        }
63 63
 
64 64
     }
65 65
 
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
      *
36 36
      *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
37 37
      */
38
-    public static function setConfig( $language ) {
38
+    public static function setConfig($language) {
39 39
 
40 40
       /**
41 41
        * Fetch translated file to config attribute
@@ -45,15 +45,15 @@  discard block
 block discarded – undo
45 45
        /**
46 46
         * Fetch translated expression to langTable attribute
47 47
         */
48
-       self::$langTable = include('lang/' . $language . '/general.php');
48
+       self::$langTable = include('lang/'.$language.'/general.php');
49 49
 
50
-       foreach( self::$langTable as $key => $translate ){
50
+       foreach (self::$langTable as $key => $translate) {
51 51
 
52
-         if ( isset( self::$config[ $key ] ) ) {
52
+         if (isset(self::$config[$key])) {
53 53
 
54
-           if ( self::$config[ $key ] ) {
54
+           if (self::$config[$key]) {
55 55
 
56
-             self::$config[ $key ] = $translate;
56
+             self::$config[$key] = $translate;
57 57
 
58 58
            }
59 59
 
Please login to merge, or discard this patch.
test.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 use Datium\Datium as Datium;
3 3
 use Datium\Tools\Convert as Covnert;
4
-try{
5
-require_once( 'vendor/autoload.php' );
6
-var_dump( "-----------------------[ Test Start ]-------------------------\n\r" );
4
+try {
5
+require_once('vendor/autoload.php');
6
+var_dump("-----------------------[ Test Start ]-------------------------\n\r");
7 7
 // echo '<br>this year:<br>';
8 8
 // var_dump( Datium::create( 2016, 1, 25, 12, 0, 0 )->to( 'hijri' )->lang( 'ar' )->get('l jS F Y h:i:s A'), "\n\r" );
9 9
 // var_dump( Datium::now()->to( 'jalali' )->get('l jS F Y h:i:s A'), "\n\r"  );
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 // echo 'Is next year leap? ';
13 13
 // var_dump( Datium::now()->add('1 year')->leap()->get(), "\n\r"  );
14 14
 echo "Day of Year in gregorian:";
15
-var_dump( Datium::now()->dayOf()->year() , "\n\r" );
15
+var_dump(Datium::now()->dayOf()->year(), "\n\r");
16 16
 // echo "Day of Year in jalali:";
17 17
 // var_dump( Datium::now()->to('jalali')->dayOf()->year(), "\n\r"  );
18 18
 // echo "Day of Year in hijri:";
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 // var_dump( Datium::now()->events()->local( 'ir' )->get() );
39 39
 // echo 'Persian calendar:';
40 40
 // var_dump( Datium::now()->lang('fa')->get( 'l jS F Y h:i:s A' ) );
41
-var_dump( "-----------------------[ Test End ]-------------------------\n\r" );
42
-} catch (Exception $e ) {
43
-  var_dump( $e );
41
+var_dump("-----------------------[ Test End ]-------------------------\n\r");
42
+} catch (Exception $e) {
43
+  var_dump($e);
44 44
 }
Please login to merge, or discard this patch.