Completed
Push — master ( 5aa9e7...387997 )
by mehdi
03:34
created
src/CalendarSettings/Gregorian.php 3 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
- use Datium\Datium as Datium;
4
-
5 3
  return array (
6 4
 
7 5
  /************************************************************
Please login to merge, or discard this patch.
Indentation   +53 added lines, -53 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
- use Datium\Datium as Datium;
3
+  use Datium\Datium as Datium;
4 4
 
5
- return array (
5
+  return array (
6 6
 
7
- /************************************************************
7
+  /************************************************************
8 8
   *                        Convert to
9 9
   ************************************************************
10 10
   *
@@ -12,13 +12,13 @@  discard block
 block discarded – undo
12 12
   *
13 13
   *\_________________________________________________________/
14 14
   */
15
-   'convert_to' => function( $date_time ) {
15
+    'convert_to' => function( $date_time ) {
16 16
 
17
-     return null;
17
+      return null;
18 18
 
19
-   },
19
+    },
20 20
 
21
-   /************************************************************
21
+    /************************************************************
22 22
     *                        Convert From
23 23
     ************************************************************
24 24
     *
@@ -26,13 +26,13 @@  discard block
 block discarded – undo
26 26
     *
27 27
     *\_________________________________________________________/
28 28
     */
29
-   'convert_from' => function( $date_time ) {
29
+    'convert_from' => function( $date_time ) {
30 30
 
31
-     return null;
31
+      return null;
32 32
 
33
-   },
33
+    },
34 34
 
35
-   /************************************************************
35
+    /************************************************************
36 36
     *               Shorthand for jalali calendar
37 37
     ************************************************************
38 38
     *
@@ -40,9 +40,9 @@  discard block
 block discarded – undo
40 40
     *
41 41
     *\_________________________________________________________/
42 42
     */
43
-   'shorthand' => 'gr',
43
+    'shorthand' => 'gr',
44 44
 
45
-   /************************************************************
45
+    /************************************************************
46 46
     *                        Month's name
47 47
     ************************************************************
48 48
     *
@@ -50,35 +50,35 @@  discard block
 block discarded – undo
50 50
     *
51 51
     *\_________________________________________________________/
52 52
     */
53
-   'month' => array (
53
+    'month' => array (
54 54
 
55
-     'Farvardin',
55
+      'Farvardin',
56 56
 
57
-     'Ordibehesht',
57
+      'Ordibehesht',
58 58
 
59
-     'Khordad',
59
+      'Khordad',
60 60
 
61
-     'Tir',
61
+      'Tir',
62 62
 
63
-     'Mordad',
63
+      'Mordad',
64 64
 
65
-     'Shahrivar',
65
+      'Shahrivar',
66 66
 
67
-     'Mehr',
67
+      'Mehr',
68 68
 
69
-     'Aban',
69
+      'Aban',
70 70
 
71
-     'Azar',
71
+      'Azar',
72 72
 
73
-     'Dey',
73
+      'Dey',
74 74
 
75
-     'Bahman',
75
+      'Bahman',
76 76
 
77
-     'Esfand'
77
+      'Esfand'
78 78
 
79
-     ),
79
+      ),
80 80
 
81
-   /************************************************************
81
+    /************************************************************
82 82
     *                        Days of Week
83 83
     ************************************************************
84 84
     *
@@ -87,38 +87,38 @@  discard block
 block discarded – undo
87 87
     *
88 88
     *\_________________________________________________________/
89 89
     */
90
-   'days_of_week' => array (
90
+    'days_of_week' => array (
91 91
 
92
-     'Shanbe',
92
+      'Shanbe',
93 93
 
94
-     'Yek-Shanbe',
94
+      'Yek-Shanbe',
95 95
 
96
-     'Do-Shanbe',
96
+      'Do-Shanbe',
97 97
 
98
-     'Se-Shanbe',
98
+      'Se-Shanbe',
99 99
 
100
-     'Chahar-Shanbe',
100
+      'Chahar-Shanbe',
101 101
 
102
-     'Panj-Shanbe',
102
+      'Panj-Shanbe',
103 103
 
104
-     'Jome'
104
+      'Jome'
105 105
 
106
-   ),
106
+    ),
107 107
 
108
-   'month_days_number' => array(   1 => 31,
109
-                                   2 => 28,
110
-                                   3 => 31,
111
-                                   4 => 30,
112
-                                   5 => 31,
113
-                                   6 => 30,
114
-                                   7 => 31,
115
-                                   8 => 31,
116
-                                   9 => 30,
117
-                                   10 => 31,
118
-                                   11 => 30,
119
-                                   12 => 30 ),
108
+    'month_days_number' => array(   1 => 31,
109
+                                    2 => 28,
110
+                                    3 => 31,
111
+                                    4 => 30,
112
+                                    5 => 31,
113
+                                    6 => 30,
114
+                                    7 => 31,
115
+                                    8 => 31,
116
+                                    9 => 30,
117
+                                    10 => 31,
118
+                                    11 => 30,
119
+                                    12 => 30 ),
120 120
 
121
-   /************************************************************
121
+    /************************************************************
122 122
     *                       Leap year
123 123
     ************************************************************
124 124
     *
@@ -126,9 +126,9 @@  discard block
 block discarded – undo
126 126
     *
127 127
     *\_________________________________________________________/
128 128
     */
129
-   'leap_year_formula' => '',
129
+    'leap_year_formula' => '',
130 130
 
131
-   /************************************************************
131
+    /************************************************************
132 132
     *                        Weekend
133 133
     ************************************************************
134 134
     *
@@ -136,6 +136,6 @@  discard block
 block discarded – undo
136 136
     *
137 137
     *\_________________________________________________________/
138 138
     */
139
-   'weekend' => array( 'friday' )
139
+    'weekend' => array( 'friday' )
140 140
 
141 141
   );
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@  discard block
 block discarded – undo
2 2
 
3 3
  use Datium\Datium as Datium;
4 4
 
5
- return array (
5
+ return array(
6 6
 
7 7
  /************************************************************
8 8
   *                        Convert to
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
   *
13 13
   *\_________________________________________________________/
14 14
   */
15
-   'convert_to' => function( $date_time ) {
15
+   'convert_to' => function($date_time) {
16 16
 
17 17
      return null;
18 18
 
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
     *
27 27
     *\_________________________________________________________/
28 28
     */
29
-   'convert_from' => function( $date_time ) {
29
+   'convert_from' => function($date_time) {
30 30
 
31 31
      return null;
32 32
 
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     *
51 51
     *\_________________________________________________________/
52 52
     */
53
-   'month' => array (
53
+   'month' => array(
54 54
 
55 55
      'Farvardin',
56 56
 
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
     *
88 88
     *\_________________________________________________________/
89 89
     */
90
-   'days_of_week' => array (
90
+   'days_of_week' => array(
91 91
 
92 92
      'Shanbe',
93 93
 
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
 
106 106
    ),
107 107
 
108
-   'month_days_number' => array(   1 => 31,
108
+   'month_days_number' => array(1 => 31,
109 109
                                    2 => 28,
110 110
                                    3 => 31,
111 111
                                    4 => 30,
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
                                    9 => 30,
117 117
                                    10 => 31,
118 118
                                    11 => 30,
119
-                                   12 => 30 ),
119
+                                   12 => 30),
120 120
 
121 121
    /************************************************************
122 122
     *                       Leap year
@@ -136,6 +136,6 @@  discard block
 block discarded – undo
136 136
     *
137 137
     *\_________________________________________________________/
138 138
     */
139
-   'weekend' => array( 'friday' )
139
+   'weekend' => array('friday')
140 140
 
141 141
   );
Please login to merge, or discard this patch.
src/Datium.php 2 patches
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/CalendarSettings/Ghamari.php 3 patches
Indentation   +104 added lines, -104 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
- return array (
3
+  return array (
4 4
 
5
- /************************************************************
5
+  /************************************************************
6 6
   *                        Convert to
7 7
   ************************************************************
8 8
   *
@@ -10,85 +10,85 @@  discard block
 block discarded – undo
10 10
   *
11 11
   *\_________________________________________________________/
12 12
   */
13
-   'convert_to' => function( $date_time ) {
13
+    'convert_to' => function( $date_time ) {
14 14
 
15
-     $config = include( 'Shamsi.php' );
15
+      $config = include( 'Shamsi.php' );
16 16
 
17
-     $date_time = Datium\Datium::create( $date_time )->to( 'shamsi' )->object();
17
+      $date_time = Datium\Datium::create( $date_time )->to( 'shamsi' )->object();
18 18
 
19
-     $year = $date_time->format('Y');
19
+      $year = $date_time->format('Y');
20 20
 
21
-     $month = $date_time->format('n');
21
+      $month = $date_time->format('n');
22 22
 
23
-     $day = $date_time->format('d');
23
+      $day = $date_time->format('d');
24 24
 
25
-     $temp_day = 0 ;
25
+      $temp_day = 0 ;
26 26
 
27
-     for ( $i = 1 ; $i < $month ; $i++ ) {
27
+      for ( $i = 1 ; $i < $month ; $i++ ) {
28 28
 
29
-         $temp_day += $config[ 'month_days_number' ][ $i ];
29
+          $temp_day += $config[ 'month_days_number' ][ $i ];
30 30
 
31
-       }
31
+        }
32 32
 
33 33
       $temp_day += $day;
34 34
 
35 35
       $leap = new Datium\Tools\Leap( $year );
36 36
 
37
-     if( $leap->get() && $month > 11 ) $temp_day++;
37
+      if( $leap->get() && $month > 11 ) $temp_day++;
38 38
 
39
-     $_year = ( ( ( ( ( $year - 1 ) * 365.2422 ) + $temp_day ) - 119) / 354.3670 ) + 1;
39
+      $_year = ( ( ( ( ( $year - 1 ) * 365.2422 ) + $temp_day ) - 119) / 354.3670 ) + 1;
40 40
 
41
-     $_year = explode( '.', $_year );
41
+      $_year = explode( '.', $_year );
42 42
 
43
-     $year = $_year[0];
43
+      $year = $_year[0];
44 44
 
45
-     $_month = $_year[1];
45
+      $_month = $_year[1];
46 46
 
47 47
       $var_temp = '0.0';
48 48
 
49
-       for ( $i = strlen( $_month ); $i > 2; $i-- ) {
49
+        for ( $i = strlen( $_month ); $i > 2; $i-- ) {
50 50
 
51
-         $var_temp .= '0';
51
+          $var_temp .= '0';
52 52
 
53 53
       }
54 54
 
55 55
       $var_temp .= '1';
56 56
 
57
-     $_month = $_month * $var_temp ;
57
+      $_month = $_month * $var_temp ;
58 58
 
59
-     $_month = ( $_month * 12 ) + 1;
59
+      $_month = ( $_month * 12 ) + 1;
60 60
 
61
-     $_month = explode( '.', $_month );
61
+      $_month = explode( '.', $_month );
62 62
 
63
-     $month = $_month[0];
63
+      $month = $_month[0];
64 64
 
65
-     $_day = $_month[1];
65
+      $_day = $_month[1];
66 66
 
67
-     $var_temp = '0.0';
67
+      $var_temp = '0.0';
68 68
 
69
-     for ( $i = strlen( $_day );  $i > 2;  $i-- ) {
69
+      for ( $i = strlen( $_day );  $i > 2;  $i-- ) {
70 70
 
71 71
         $var_temp .= '0' ;
72 72
 
73
-     }
73
+      }
74 74
 
75
-     $var_temp .= '1';
75
+      $var_temp .= '1';
76 76
 
77
-     $_day = $_day * $var_temp;
77
+      $_day = $_day * $var_temp;
78 78
 
79
-     $_day = ( $_day * 29.530 );
79
+      $_day = ( $_day * 29.530 );
80 80
 
81
-     $_day = explode( '.', $_day );
81
+      $_day = explode( '.', $_day );
82 82
 
83
-     $day = $_day[0];
83
+      $day = $_day[0];
84 84
 
85 85
     $date_time->setDate( $year, $month, $day );
86 86
 
87 87
     return $date_time;
88 88
 
89
-   },
89
+    },
90 90
 
91
-   /************************************************************
91
+    /************************************************************
92 92
     *                        Convert From
93 93
     ************************************************************
94 94
     *
@@ -96,62 +96,62 @@  discard block
 block discarded – undo
96 96
     *
97 97
     *\_________________________________________________________/
98 98
     */
99
-   'convert_from' => function( $date_time ) {
99
+    'convert_from' => function( $date_time ) {
100 100
 
101
-     $config = include('Ghamari.php');
101
+      $config = include('Ghamari.php');
102 102
 
103
-     $year = $date_time->format('Y');
103
+      $year = $date_time->format('Y');
104 104
 
105
-     $month = $date_time->format('m');
105
+      $month = $date_time->format('m');
106 106
 
107
-     $day = $date_time->format('d');
107
+      $day = $date_time->format('d');
108 108
 
109
-     $days_of_year = 0;
109
+      $days_of_year = 0;
110 110
 
111
-     foreach ( $config['month_days_number'] as $month => $value ) {
111
+      foreach ( $config['month_days_number'] as $month => $value ) {
112 112
 
113
-       if( $month > $month ) $days_of_year += $value;
113
+        if( $month > $month ) $days_of_year += $value;
114 114
 
115
-     }
115
+      }
116 116
 
117
-     $days_of_year += $day;
117
+      $days_of_year += $day;
118 118
 
119
-     $days_of_leap_years =  intval( ( ( $year - 1 ) / 3 )  );
119
+      $days_of_leap_years =  intval( ( ( $year - 1 ) / 3 )  );
120 120
 
121
-     $days_of_ghamari_years = ( ( ( $year - 1 ) * 354 ) + $days_of_year + $days_of_leap_years );
121
+      $days_of_ghamari_years = ( ( ( $year - 1 ) * 354 ) + $days_of_year + $days_of_leap_years );
122 122
 
123
-     $days_of_gregorain_years = $days_of_ghamari_years + 227078;
123
+      $days_of_gregorain_years = $days_of_ghamari_years + 227078;
124 124
 
125
-     $days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $year + 578 ) / 4 ) );
125
+      $days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $year + 578 ) / 4 ) );
126 126
 
127
-     $gregorian_month = ( $days_of_gregorain_years % 365 );
127
+      $gregorian_month = ( $days_of_gregorain_years % 365 );
128 128
 
129
-     $gregorian_year = intval( $days_of_gregorain_years / 365 ) + 1;
129
+      $gregorian_year = intval( $days_of_gregorain_years / 365 ) + 1;
130 130
 
131
-     $config = include('Gregorian.php');
131
+      $config = include('Gregorian.php');
132 132
 
133
-     foreach ($config [ 'month_days_number' ] as $month => $value) {
133
+      foreach ($config [ 'month_days_number' ] as $month => $value) {
134 134
 
135
-       if ( $gregorian_month < $value ) {
135
+        if ( $gregorian_month < $value ) {
136 136
 
137
-         break;
138
-       }
137
+          break;
138
+        }
139 139
 
140
-         $gregorian_month -= $value;
141
-     }
140
+          $gregorian_month -= $value;
141
+      }
142 142
 
143
-       $gregorian_day = $gregorian_month;
143
+        $gregorian_day = $gregorian_month;
144 144
 
145
-       $gregorian_month = $month;
145
+        $gregorian_month = $month;
146 146
 
147
-       $date_time->setDate( $gregorian_year, $gregorian_month, $gregorian_day );
147
+        $date_time->setDate( $gregorian_year, $gregorian_month, $gregorian_day );
148 148
 
149 149
       return $date_time;
150 150
 
151 151
 
152
-   },
152
+    },
153 153
 
154
-   /************************************************************
154
+    /************************************************************
155 155
     *               Shorthand for jalali calendar
156 156
     ************************************************************
157 157
     *
@@ -159,9 +159,9 @@  discard block
 block discarded – undo
159 159
     *
160 160
     *\_________________________________________________________/
161 161
     */
162
-   'shorthand' => 'sh',
162
+    'shorthand' => 'sh',
163 163
 
164
-   /************************************************************
164
+    /************************************************************
165 165
     *                        Month's name
166 166
     ************************************************************
167 167
     *
@@ -169,35 +169,35 @@  discard block
 block discarded – undo
169 169
     *
170 170
     *\_________________________________________________________/
171 171
     */
172
-   'month' => array (
172
+    'month' => array (
173 173
 
174
-     'Farvardin',
174
+      'Farvardin',
175 175
 
176
-     'Ordibehesht',
176
+      'Ordibehesht',
177 177
 
178
-     'Khordad',
178
+      'Khordad',
179 179
 
180
-     'Tir',
180
+      'Tir',
181 181
 
182
-     'Mordad',
182
+      'Mordad',
183 183
 
184
-     'Shahrivar',
184
+      'Shahrivar',
185 185
 
186
-     'Mehr',
186
+      'Mehr',
187 187
 
188
-     'Aban',
188
+      'Aban',
189 189
 
190
-     'Azar',
190
+      'Azar',
191 191
 
192
-     'Dey',
192
+      'Dey',
193 193
 
194
-     'Bahman',
194
+      'Bahman',
195 195
 
196
-     'Esfand'
196
+      'Esfand'
197 197
 
198
-     ),
198
+      ),
199 199
 
200
-   /************************************************************
200
+    /************************************************************
201 201
     *                        Days of Week
202 202
     ************************************************************
203 203
     *
@@ -206,38 +206,38 @@  discard block
 block discarded – undo
206 206
     *
207 207
     *\_________________________________________________________/
208 208
     */
209
-   'days_of_week' => array (
209
+    'days_of_week' => array (
210 210
 
211
-     'Shanbe',
211
+      'Shanbe',
212 212
 
213
-     'Yek-Shanbe',
213
+      'Yek-Shanbe',
214 214
 
215
-     'Do-Shanbe',
215
+      'Do-Shanbe',
216 216
 
217
-     'Se-Shanbe',
217
+      'Se-Shanbe',
218 218
 
219
-     'Chahar-Shanbe',
219
+      'Chahar-Shanbe',
220 220
 
221
-     'Panj-Shanbe',
221
+      'Panj-Shanbe',
222 222
 
223
-     'Jome'
223
+      'Jome'
224 224
 
225
-   ),
225
+    ),
226 226
 
227
-   'month_days_number' => array(     1 => 30,
228
-                                     2 => 29,
229
-                                     3 => 30,
230
-                                     4 => 30,
231
-                                     5 => 29,
232
-                                     6 => 29,
233
-                                     7 => 30,
234
-                                     8 => 29,
235
-                                     9 => 30,
236
-                                     10 => 29,
237
-                                     11 => 30,
238
-                                     12 => 30 ),
227
+    'month_days_number' => array(     1 => 30,
228
+                                      2 => 29,
229
+                                      3 => 30,
230
+                                      4 => 30,
231
+                                      5 => 29,
232
+                                      6 => 29,
233
+                                      7 => 30,
234
+                                      8 => 29,
235
+                                      9 => 30,
236
+                                      10 => 29,
237
+                                      11 => 30,
238
+                                      12 => 30 ),
239 239
 
240
-   /************************************************************
240
+    /************************************************************
241 241
     *                       Leap year
242 242
     ************************************************************
243 243
     *
@@ -245,9 +245,9 @@  discard block
 block discarded – undo
245 245
     *
246 246
     *\_________________________________________________________/
247 247
     */
248
-   'leap_year_formula' => '',
248
+    'leap_year_formula' => '',
249 249
 
250
-   /************************************************************
250
+    /************************************************************
251 251
     *                        Weekend
252 252
     ************************************************************
253 253
     *
@@ -255,6 +255,6 @@  discard block
 block discarded – undo
255 255
     *
256 256
     *\_________________________________________________________/
257 257
     */
258
-   'weekend' => array( 'friday' )
258
+    'weekend' => array( 'friday' )
259 259
 
260 260
   );
Please login to merge, or discard this patch.
Spacing   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
- return array (
3
+ return array(
4 4
 
5 5
  /************************************************************
6 6
   *                        Convert to
@@ -10,11 +10,11 @@  discard block
 block discarded – undo
10 10
   *
11 11
   *\_________________________________________________________/
12 12
   */
13
-   'convert_to' => function( $date_time ) {
13
+   'convert_to' => function($date_time) {
14 14
 
15
-     $config = include( 'Shamsi.php' );
15
+     $config = include('Shamsi.php');
16 16
 
17
-     $date_time = Datium\Datium::create( $date_time )->to( 'shamsi' )->object();
17
+     $date_time = Datium\Datium::create($date_time)->to('shamsi')->object();
18 18
 
19 19
      $year = $date_time->format('Y');
20 20
 
@@ -22,23 +22,23 @@  discard block
 block discarded – undo
22 22
 
23 23
      $day = $date_time->format('d');
24 24
 
25
-     $temp_day = 0 ;
25
+     $temp_day = 0;
26 26
 
27
-     for ( $i = 1 ; $i < $month ; $i++ ) {
27
+     for ($i = 1; $i < $month; $i++) {
28 28
 
29
-         $temp_day += $config[ 'month_days_number' ][ $i ];
29
+         $temp_day += $config['month_days_number'][$i];
30 30
 
31 31
        }
32 32
 
33 33
       $temp_day += $day;
34 34
 
35
-      $leap = new Datium\Tools\Leap( $year );
35
+      $leap = new Datium\Tools\Leap($year);
36 36
 
37
-     if( $leap->get() && $month > 11 ) $temp_day++;
37
+     if ($leap->get() && $month > 11) $temp_day++;
38 38
 
39
-     $_year = ( ( ( ( ( $year - 1 ) * 365.2422 ) + $temp_day ) - 119) / 354.3670 ) + 1;
39
+     $_year = ((((($year - 1) * 365.2422) + $temp_day) - 119) / 354.3670) + 1;
40 40
 
41
-     $_year = explode( '.', $_year );
41
+     $_year = explode('.', $_year);
42 42
 
43 43
      $year = $_year[0];
44 44
 
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 
47 47
       $var_temp = '0.0';
48 48
 
49
-       for ( $i = strlen( $_month ); $i > 2; $i-- ) {
49
+       for ($i = strlen($_month); $i > 2; $i--) {
50 50
 
51 51
          $var_temp .= '0';
52 52
 
@@ -54,11 +54,11 @@  discard block
 block discarded – undo
54 54
 
55 55
       $var_temp .= '1';
56 56
 
57
-     $_month = $_month * $var_temp ;
57
+     $_month = $_month * $var_temp;
58 58
 
59
-     $_month = ( $_month * 12 ) + 1;
59
+     $_month = ($_month * 12) + 1;
60 60
 
61
-     $_month = explode( '.', $_month );
61
+     $_month = explode('.', $_month);
62 62
 
63 63
      $month = $_month[0];
64 64
 
@@ -66,9 +66,9 @@  discard block
 block discarded – undo
66 66
 
67 67
      $var_temp = '0.0';
68 68
 
69
-     for ( $i = strlen( $_day );  $i > 2;  $i-- ) {
69
+     for ($i = strlen($_day); $i > 2; $i--) {
70 70
 
71
-        $var_temp .= '0' ;
71
+        $var_temp .= '0';
72 72
 
73 73
      }
74 74
 
@@ -76,13 +76,13 @@  discard block
 block discarded – undo
76 76
 
77 77
      $_day = $_day * $var_temp;
78 78
 
79
-     $_day = ( $_day * 29.530 );
79
+     $_day = ($_day * 29.530);
80 80
 
81
-     $_day = explode( '.', $_day );
81
+     $_day = explode('.', $_day);
82 82
 
83 83
      $day = $_day[0];
84 84
 
85
-    $date_time->setDate( $year, $month, $day );
85
+    $date_time->setDate($year, $month, $day);
86 86
 
87 87
     return $date_time;
88 88
 
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     *
97 97
     *\_________________________________________________________/
98 98
     */
99
-   'convert_from' => function( $date_time ) {
99
+   'convert_from' => function($date_time) {
100 100
 
101 101
      $config = include('Ghamari.php');
102 102
 
@@ -108,31 +108,31 @@  discard block
 block discarded – undo
108 108
 
109 109
      $days_of_year = 0;
110 110
 
111
-     foreach ( $config['month_days_number'] as $month => $value ) {
111
+     foreach ($config['month_days_number'] as $month => $value) {
112 112
 
113
-       if( $month > $month ) $days_of_year += $value;
113
+       if ($month > $month) $days_of_year += $value;
114 114
 
115 115
      }
116 116
 
117 117
      $days_of_year += $day;
118 118
 
119
-     $days_of_leap_years =  intval( ( ( $year - 1 ) / 3 )  );
119
+     $days_of_leap_years = intval((($year - 1) / 3));
120 120
 
121
-     $days_of_ghamari_years = ( ( ( $year - 1 ) * 354 ) + $days_of_year + $days_of_leap_years );
121
+     $days_of_ghamari_years = ((($year - 1) * 354) + $days_of_year + $days_of_leap_years);
122 122
 
123 123
      $days_of_gregorain_years = $days_of_ghamari_years + 227078;
124 124
 
125
-     $days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $year + 578 ) / 4 ) );
125
+     $days_of_gregorain_years = $days_of_gregorain_years - intval((($year + 578) / 4));
126 126
 
127
-     $gregorian_month = ( $days_of_gregorain_years % 365 );
127
+     $gregorian_month = ($days_of_gregorain_years % 365);
128 128
 
129
-     $gregorian_year = intval( $days_of_gregorain_years / 365 ) + 1;
129
+     $gregorian_year = intval($days_of_gregorain_years / 365) + 1;
130 130
 
131 131
      $config = include('Gregorian.php');
132 132
 
133
-     foreach ($config [ 'month_days_number' ] as $month => $value) {
133
+     foreach ($config ['month_days_number'] as $month => $value) {
134 134
 
135
-       if ( $gregorian_month < $value ) {
135
+       if ($gregorian_month < $value) {
136 136
 
137 137
          break;
138 138
        }
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
 
145 145
        $gregorian_month = $month;
146 146
 
147
-       $date_time->setDate( $gregorian_year, $gregorian_month, $gregorian_day );
147
+       $date_time->setDate($gregorian_year, $gregorian_month, $gregorian_day);
148 148
 
149 149
       return $date_time;
150 150
 
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
     *
170 170
     *\_________________________________________________________/
171 171
     */
172
-   'month' => array (
172
+   'month' => array(
173 173
 
174 174
      'Farvardin',
175 175
 
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
     *
207 207
     *\_________________________________________________________/
208 208
     */
209
-   'days_of_week' => array (
209
+   'days_of_week' => array(
210 210
 
211 211
      'Shanbe',
212 212
 
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
 
225 225
    ),
226 226
 
227
-   'month_days_number' => array(     1 => 30,
227
+   'month_days_number' => array(1 => 30,
228 228
                                      2 => 29,
229 229
                                      3 => 30,
230 230
                                      4 => 30,
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
                                      9 => 30,
236 236
                                      10 => 29,
237 237
                                      11 => 30,
238
-                                     12 => 30 ),
238
+                                     12 => 30),
239 239
 
240 240
    /************************************************************
241 241
     *                       Leap year
@@ -255,6 +255,6 @@  discard block
 block discarded – undo
255 255
     *
256 256
     *\_________________________________________________________/
257 257
     */
258
-   'weekend' => array( 'friday' )
258
+   'weekend' => array('friday')
259 259
 
260 260
   );
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,9 @@  discard block
 block discarded – undo
34 34
 
35 35
       $leap = new Datium\Tools\Leap( $year );
36 36
 
37
-     if( $leap->get() && $month > 11 ) $temp_day++;
37
+     if( $leap->get() && $month > 11 ) {
38
+       $temp_day++;
39
+     }
38 40
 
39 41
      $_year = ( ( ( ( ( $year - 1 ) * 365.2422 ) + $temp_day ) - 119) / 354.3670 ) + 1;
40 42
 
@@ -110,7 +112,9 @@  discard block
 block discarded – undo
110 112
 
111 113
      foreach ( $config['month_days_number'] as $month => $value ) {
112 114
 
113
-       if( $month > $month ) $days_of_year += $value;
115
+       if( $month > $month ) {
116
+         $days_of_year += $value;
117
+       }
114 118
 
115 119
      }
116 120
 
Please login to merge, or discard this patch.
src/CalendarSettings/Shamsi.php 2 patches
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -106,17 +106,17 @@  discard block
 block discarded – undo
106 106
   ),
107 107
 
108 108
   'month_days_number' => array(      1 => 31,
109
-                                     2 => 31,
110
-                                     3 => 31,
111
-                                     4 => 31,
112
-                                     5 => 31,
113
-                                     6 => 31,
114
-                                     7 => 30,
115
-                                     8 => 30,
116
-                                     9 => 30,
117
-                                     10 => 30,
118
-                                     11 => 30,
119
-                                     12 => 29 ),
109
+                                      2 => 31,
110
+                                      3 => 31,
111
+                                      4 => 31,
112
+                                      5 => 31,
113
+                                      6 => 31,
114
+                                      7 => 30,
115
+                                      8 => 30,
116
+                                      9 => 30,
117
+                                      10 => 30,
118
+                                      11 => 30,
119
+                                      12 => 29 ),
120 120
 
121 121
   /************************************************************
122 122
    *                       Leap year
@@ -138,4 +138,4 @@  discard block
 block discarded – undo
138 138
    */
139 139
   'weekend' => array( 'friday' )
140 140
 
141
- );
141
+  );
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@  discard block
 block discarded – undo
2 2
 
3 3
 use Datium\Datium as Datium;
4 4
 
5
-return array (
5
+return array(
6 6
 
7 7
 /************************************************************
8 8
  *                        Convert to
@@ -12,9 +12,9 @@  discard block
 block discarded – undo
12 12
  *
13 13
  *\_________________________________________________________/
14 14
  */
15
-  'convert_to' => function( $date_time ) {
15
+  'convert_to' => function($date_time) {
16 16
 
17
-    return Datium::create( $date_time )->sub( '226897 day' )->object();
17
+    return Datium::create($date_time)->sub('226897 day')->object();
18 18
 
19 19
   },
20 20
 
@@ -26,9 +26,9 @@  discard block
 block discarded – undo
26 26
    *
27 27
    *\_________________________________________________________/
28 28
    */
29
-  'convert_from' => function( $date_time ) {
29
+  'convert_from' => function($date_time) {
30 30
 
31
-    return Datium::create( $date_time )->add( '226897 day' )->object();
31
+    return Datium::create($date_time)->add('226897 day')->object();
32 32
 
33 33
   },
34 34
 
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
    *
51 51
    *\_________________________________________________________/
52 52
    */
53
-  'month' => array (
53
+  'month' => array(
54 54
 
55 55
     'Farvardin',
56 56
 
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
    *
88 88
    *\_________________________________________________________/
89 89
    */
90
-  'days_of_week' => array (
90
+  'days_of_week' => array(
91 91
 
92 92
     'Shanbe',
93 93
 
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
 
106 106
   ),
107 107
 
108
-  'month_days_number' => array(      1 => 31,
108
+  'month_days_number' => array(1 => 31,
109 109
                                      2 => 31,
110 110
                                      3 => 31,
111 111
                                      4 => 31,
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
                                      9 => 30,
117 117
                                      10 => 30,
118 118
                                      11 => 30,
119
-                                     12 => 29 ),
119
+                                     12 => 29),
120 120
 
121 121
   /************************************************************
122 122
    *                       Leap year
@@ -136,6 +136,6 @@  discard block
 block discarded – undo
136 136
    *
137 137
    *\_________________________________________________________/
138 138
    */
139
-  'weekend' => array( 'friday' )
139
+  'weekend' => array('friday')
140 140
 
141 141
  );
Please login to merge, or discard this patch.
src/Convert.php 3 patches
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.
test.php 1 patch
Spacing   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -3,64 +3,64 @@
 block discarded – undo
3 3
 use Datium\Datium as Datium;
4 4
 use Datium\Tools\Convert as Covnert;
5 5
 
6
-try{
6
+try {
7 7
 
8
-require_once( 'vendor/autoload.php' );
9
-var_dump( Datium::create( 2020, 07, 11 )->to( 'shamsi' )->get() );
10
-var_dump( Datium::create( 2020, 07, 11 )->to( 'ghamari' )->get() );
11
-var_dump( Datium::create( Datium::now()->object() )->get() );
8
+require_once('vendor/autoload.php');
9
+var_dump(Datium::create(2020, 07, 11)->to('shamsi')->get());
10
+var_dump(Datium::create(2020, 07, 11)->to('ghamari')->get());
11
+var_dump(Datium::create(Datium::now()->object())->get());
12 12
 echo '<br>this year:<br>';
13
-var_dump( Datium::now()->to( 'shamsi' )->get( 'l jS F Y h:i:s A' ) );
13
+var_dump(Datium::now()->to('shamsi')->get('l jS F Y h:i:s A'));
14 14
 echo "<br>";
15
-var_dump( Datium::now()->to( 'shamsi' )->sub('3 year')->get() );
15
+var_dump(Datium::now()->to('shamsi')->sub('3 year')->get());
16 16
 echo "<br>";
17
-var_dump( Datium::now()->to( 'shamsi' )->add('3 year')->get() );
17
+var_dump(Datium::now()->to('shamsi')->add('3 year')->get());
18 18
 echo "<br>";
19
-var_dump( Datium::now()->get( 'l jS F Y h:i:s A' ) );
19
+var_dump(Datium::now()->get('l jS F Y h:i:s A'));
20 20
 echo "<br>Leap year ";
21
-var_dump( Datium::now()->leap()->get() );
21
+var_dump(Datium::now()->leap()->get());
22 22
 echo "<br>Create new DateTime: ";
23
-var_dump( Datium::create(2000, 1, 1, 0, 0, 0)->get() );
23
+var_dump(Datium::create(2000, 1, 1, 0, 0, 0)->get());
24 24
 echo "<br>";
25 25
 echo 'Is next year leap? ';
26
-var_dump( Datium::now()->add('1 year')->leap()->get() );
26
+var_dump(Datium::now()->add('1 year')->leap()->get());
27 27
 echo "<br>";
28 28
 echo "Day of Year in gregorian:";
29 29
 echo "<br>";
30
-var_dump( Datium::now()->dayOf()->year() );
30
+var_dump(Datium::now()->dayOf()->year());
31 31
 echo "<br>";
32 32
 echo "Day of Year in shamsi:";
33 33
 echo "<br>";
34
-var_dump( Datium::now()->to('shamsi')->dayOf()->year() );
34
+var_dump(Datium::now()->to('shamsi')->dayOf()->year());
35 35
 echo "<br>";
36 36
 echo "Day of Year in ghamari:";
37 37
 echo "<br>";
38
-var_dump( Datium::now()->to( 'ghamari' )->dayOf()->year() );
38
+var_dump(Datium::now()->to('ghamari')->dayOf()->year());
39 39
 echo "<br>";
40 40
 echo "Day of Week";
41 41
 echo "<br>";
42
-var_dump( Datium::now()->dayOf()->week() );
42
+var_dump(Datium::now()->dayOf()->week());
43 43
 echo "<br>";
44 44
 echo "Change date form gregorian to shamsi with method: ";
45
-var_dump( Datium::create( 1989, 10, 27 )->to( 'shamsi' )->get( 'l jS F Y h:i:s A' ) );
45
+var_dump(Datium::create(1989, 10, 27)->to('shamsi')->get('l jS F Y h:i:s A'));
46 46
 echo "<br>";
47
-var_dump( Datium::now()->to( 'ghamari' )->get( 'l jS F Y h:i:s A' ) );
47
+var_dump(Datium::now()->to('ghamari')->get('l jS F Y h:i:s A'));
48 48
 echo "<br>";
49 49
 echo "<br>";
50 50
 echo "<br>is persian holiday? ";
51
-var_dump(  Datium::between( Datium::now()->object() , Datium::now()->add( '3 month' )->object() )->events()->local( 'us' )->local( 'ir' )->get() );
51
+var_dump(Datium::between(Datium::now()->object(), Datium::now()->add('3 month')->object())->events()->local('us')->local('ir')->get());
52 52
 echo 'return international days';
53
-var_dump(  Datium::between( Datium::now()->object() , Datium::now()->add('4 month')->object() )->events()->international()->get() );
53
+var_dump(Datium::between(Datium::now()->object(), Datium::now()->add('4 month')->object())->events()->international()->get());
54 54
 echo 'Convert gregorian to perisan';
55
-var_dump( Datium::now()->to('shamsi')->get() );
55
+var_dump(Datium::now()->to('shamsi')->get());
56 56
 echo 'Today\'s events:';
57
-var_dump( Datium::now()->events()->local( 'ir' )->get() );
57
+var_dump(Datium::now()->events()->local('ir')->get());
58 58
 echo 'Date diff';
59
-$diff = Datium::diff( Datium::now()->object(), Datium::now()->add('5 day')->object() );
60
-var_dump( $diff->days );
59
+$diff = Datium::diff(Datium::now()->object(), Datium::now()->add('5 day')->object());
60
+var_dump($diff->days);
61 61
 
62
-} catch (Exception $e ) {
62
+} catch (Exception $e) {
63 63
 
64
-  var_dump( $e );
64
+  var_dump($e);
65 65
 
66 66
 }
Please login to merge, or discard this patch.