Completed
Push — master ( f91529...da1f74 )
by
unknown
04:00
created
src/CalendarSettings/Hijri.php 3 patches
Indentation   +121 added lines, -121 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( 'Jalali.php' );
15
+      $config = include( 'Jalali.php' );
16 16
 
17
-     $date_time = Datium\Datium::create( $date_time )->to( 'jalali' )->object();
17
+      $date_time = Datium\Datium::create( $date_time )->to( 'jalali' )->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('Hijri.php');
101
+      $config = include('Hijri.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,7 +169,7 @@  discard block
 block discarded – undo
169 169
     *
170 170
     *\_________________________________________________________/
171 171
     */
172
-   'month' => array (
172
+    'month' => array (
173 173
 
174 174
         'Muharram',
175 175
 
@@ -195,9 +195,9 @@  discard block
 block discarded – undo
195 195
 
196 196
         'Dhu al_Hijjah'
197 197
 
198
-     ),
198
+      ),
199 199
 
200
-   /************************************************************
200
+    /************************************************************
201 201
     *                        Days of Week
202 202
     ************************************************************
203 203
     *
@@ -206,40 +206,40 @@  discard block
 block discarded – undo
206 206
     *
207 207
     *\_________________________________________________________/
208 208
     */
209
-   'days_of_week' => array (
210
-         'al-Aḥad',
211
-         'al-Ithnayn',
212
-         'ath-Thulatha\'',
213
-         'al-Arbi\'a',
214
-         'al-Khamees',
215
-         'al-Jumu\'ah',
216
-         'as-Sabt',
209
+    'days_of_week' => array (
210
+          'al-Aḥad',
211
+          'al-Ithnayn',
212
+          'ath-Thulatha\'',
213
+          'al-Arbi\'a',
214
+          'al-Khamees',
215
+          'al-Jumu\'ah',
216
+          'as-Sabt',
217 217
 
218
-   ),
218
+    ),
219 219
 
220
-   'numbers' => array( '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'),
220
+    'numbers' => array( '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'),
221 221
 
222
-   'am_time' => 'AM',
222
+    'am_time' => 'AM',
223 223
 
224
-   'pm_time' => 'PM',
224
+    'pm_time' => 'PM',
225 225
 
226
-   'end_of_days' => array( 'th', 'st', 'nd', 'rd' ),
226
+    'end_of_days' => array( 'th', 'st', 'nd', 'rd' ),
227 227
 
228 228
 
229 229
 
230 230
 
231
-   'month_days_number' => array(     1 => 30,
232
-                                     2 => 29,
233
-                                     3 => 30,
234
-                                     4 => 30,
235
-                                     5 => 29,
236
-                                     6 => 29,
237
-                                     7 => 30,
238
-                                     8 => 29,
239
-                                     9 => 30,
240
-                                     10 => 29,
241
-                                     11 => 30,
242
-                                     12 => 30 ),
231
+    'month_days_number' => array(     1 => 30,
232
+                                      2 => 29,
233
+                                      3 => 30,
234
+                                      4 => 30,
235
+                                      5 => 29,
236
+                                      6 => 29,
237
+                                      7 => 30,
238
+                                      8 => 29,
239
+                                      9 => 30,
240
+                                      10 => 29,
241
+                                      11 => 30,
242
+                                      12 => 30 ),
243 243
     /************************************************************
244 244
     *                      Day of year
245 245
     ************************************************************
@@ -248,33 +248,33 @@  discard block
 block discarded – undo
248 248
     *
249 249
     *\_________________________________________________________/
250 250
     */
251
-     'day_of_year' => function( $date_time ) {
251
+      'day_of_year' => function( $date_time ) {
252 252
 
253
-       $result = null;
253
+        $result = null;
254 254
 
255
-       $config = include( 'Hijri.php' );
255
+        $config = include( 'Hijri.php' );
256 256
 
257
-       $month = $date_time->format('n');
257
+        $month = $date_time->format('n');
258 258
 
259
-       $day = $date_time->format('d');
259
+        $day = $date_time->format('d');
260 260
 
261
-       foreach( $config['month_days_number'] as $_month => $value ) {
261
+        foreach( $config['month_days_number'] as $_month => $value ) {
262 262
 
263
-         if ( $_month < $month ) {
263
+          if ( $_month < $month ) {
264 264
 
265
-           $result += $value;
265
+            $result += $value;
266 266
 
267
-         }
267
+          }
268 268
 
269
-       }
269
+        }
270 270
 
271
-       $result += $day;
271
+        $result += $day;
272 272
 
273
-       return $result;
273
+        return $result;
274 274
 
275
-     },
275
+      },
276 276
 
277
-     /************************************************************
277
+      /************************************************************
278 278
       *                      Day of week
279 279
       ************************************************************
280 280
       *
@@ -282,29 +282,29 @@  discard block
 block discarded – undo
282 282
       *  example : al-Aḥad = result is 1
283 283
       *\_________________________________________________________/
284 284
       */
285
-     'day_of_week' => function( $date_time ) {
285
+      'day_of_week' => function( $date_time ) {
286 286
 
287
-       $configGhamari = include( 'Hijri.php' );
287
+        $configGhamari = include( 'Hijri.php' );
288 288
 
289
-       $configGregorian = include( 'Gregorian.php' );
289
+        $configGregorian = include( 'Gregorian.php' );
290 290
 
291
-       $day = $date_time->format('l');
291
+        $day = $date_time->format('l');
292 292
 
293
-       $day = str_replace( $configGregorian['days_of_week'], $configGhamari['days_of_week'], $day);
293
+        $day = str_replace( $configGregorian['days_of_week'], $configGhamari['days_of_week'], $day);
294 294
 
295
-       foreach ( $configGhamari['days_of_week'] as $key => $value ) {
295
+        foreach ( $configGhamari['days_of_week'] as $key => $value ) {
296 296
 
297
-         if( $value == $day ) {
297
+          if( $value == $day ) {
298 298
 
299
-           return $key += 1;
299
+            return $key += 1;
300 300
 
301
-         }
301
+          }
302 302
 
303
-       }
303
+        }
304 304
 
305
-     },
305
+      },
306 306
 
307
-     /************************************************************
307
+      /************************************************************
308 308
       *                       Leap year
309 309
       ************************************************************
310 310
       *
@@ -312,9 +312,9 @@  discard block
 block discarded – undo
312 312
       *
313 313
       *\_________________________________________________________/
314 314
       */
315
-     'leap_year' => null,
315
+      'leap_year' => null,
316 316
 
317
-   /************************************************************
317
+    /************************************************************
318 318
     *                        Weekend
319 319
     ************************************************************
320 320
     *
@@ -322,6 +322,6 @@  discard block
 block discarded – undo
322 322
     *
323 323
     *\_________________________________________________________/
324 324
     */
325
-   'weekend' => array( 'friday', 'saturday' ),
325
+    'weekend' => array( 'friday', 'saturday' ),
326 326
 
327 327
   );
Please login to merge, or discard this patch.
Spacing   +48 added lines, -48 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( 'Jalali.php' );
15
+     $config = include('Jalali.php');
16 16
 
17
-     $date_time = Datium\Datium::create( $date_time )->to( 'jalali' )->object();
17
+     $date_time = Datium\Datium::create($date_time)->to('jalali')->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('Hijri.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
         'Muharram',
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
          'al-Aḥad',
211 211
          'al-Ithnayn',
212 212
          'ath-Thulatha\'',
@@ -217,18 +217,18 @@  discard block
 block discarded – undo
217 217
 
218 218
    ),
219 219
 
220
-   'numbers' => array( '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'),
220
+   'numbers' => array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9'),
221 221
 
222 222
    'am_time' => 'AM',
223 223
 
224 224
    'pm_time' => 'PM',
225 225
 
226
-   'end_of_days' => array( 'th', 'st', 'nd', 'rd' ),
226
+   'end_of_days' => array('th', 'st', 'nd', 'rd'),
227 227
 
228 228
 
229 229
 
230 230
 
231
-   'month_days_number' => array(     1 => 30,
231
+   'month_days_number' => array(1 => 30,
232 232
                                      2 => 29,
233 233
                                      3 => 30,
234 234
                                      4 => 30,
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
                                      9 => 30,
240 240
                                      10 => 29,
241 241
                                      11 => 30,
242
-                                     12 => 30 ),
242
+                                     12 => 30),
243 243
     /************************************************************
244 244
     *                      Day of year
245 245
     ************************************************************
@@ -248,19 +248,19 @@  discard block
 block discarded – undo
248 248
     *
249 249
     *\_________________________________________________________/
250 250
     */
251
-     'day_of_year' => function( $date_time ) {
251
+     'day_of_year' => function($date_time) {
252 252
 
253 253
        $result = null;
254 254
 
255
-       $config = include( 'Hijri.php' );
255
+       $config = include('Hijri.php');
256 256
 
257 257
        $month = $date_time->format('n');
258 258
 
259 259
        $day = $date_time->format('d');
260 260
 
261
-       foreach( $config['month_days_number'] as $_month => $value ) {
261
+       foreach ($config['month_days_number'] as $_month => $value) {
262 262
 
263
-         if ( $_month < $month ) {
263
+         if ($_month < $month) {
264 264
 
265 265
            $result += $value;
266 266
 
@@ -282,19 +282,19 @@  discard block
 block discarded – undo
282 282
       *  example : al-Aḥad = result is 1
283 283
       *\_________________________________________________________/
284 284
       */
285
-     'day_of_week' => function( $date_time ) {
285
+     'day_of_week' => function($date_time) {
286 286
 
287
-       $configGhamari = include( 'Hijri.php' );
287
+       $configGhamari = include('Hijri.php');
288 288
 
289
-       $configGregorian = include( 'Gregorian.php' );
289
+       $configGregorian = include('Gregorian.php');
290 290
 
291 291
        $day = $date_time->format('l');
292 292
 
293
-       $day = str_replace( $configGregorian['days_of_week'], $configGhamari['days_of_week'], $day);
293
+       $day = str_replace($configGregorian['days_of_week'], $configGhamari['days_of_week'], $day);
294 294
 
295
-       foreach ( $configGhamari['days_of_week'] as $key => $value ) {
295
+       foreach ($configGhamari['days_of_week'] as $key => $value) {
296 296
 
297
-         if( $value == $day ) {
297
+         if ($value == $day) {
298 298
 
299 299
            return $key += 1;
300 300
 
@@ -322,6 +322,6 @@  discard block
 block discarded – undo
322 322
     *
323 323
     *\_________________________________________________________/
324 324
     */
325
-   'weekend' => array( 'friday', 'saturday' ),
325
+   'weekend' => array('friday', 'saturday'),
326 326
 
327 327
   );
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/Jalali.php 3 patches
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -41,19 +41,19 @@  discard block
 block discarded – undo
41 41
 
42 42
         $temp_day = 0;
43 43
 
44
-         for ( $i = 1 ; $i < $month ; $i++ ) {
44
+          for ( $i = 1 ; $i < $month ; $i++ ) {
45 45
 
46
-           $temp_day += $config['month_days_number'][$i];
46
+            $temp_day += $config['month_days_number'][$i];
47 47
 
48
-         }
48
+          }
49 49
 
50
-         $temp_day += $day;
50
+          $temp_day += $day;
51 51
 
52
-         $leap = new Leap( $year );
52
+          $leap = new Leap( $year );
53 53
 
54
-         if( $leap->get() && $month > 2 ) $temp_day++;
54
+          if( $leap->get() && $month > 2 ) $temp_day++;
55 55
 
56
-         if ( $temp_day <= 79 ) {
56
+          if ( $temp_day <= 79 ) {
57 57
 
58 58
           if( ( $year - 1 ) % 4 == 0 )
59 59
 
@@ -81,9 +81,9 @@  discard block
 block discarded – undo
81 81
 
82 82
           }
83 83
 
84
-         }
84
+          }
85 85
 
86
-         else {
86
+          else {
87 87
 
88 88
           $year = $year - 621;
89 89
 
@@ -129,11 +129,11 @@  discard block
 block discarded – undo
129 129
 
130 130
           }
131 131
 
132
-         }
132
+          }
133 133
 
134
-         $date_time->setDate( $year, $month, $day );
134
+          $date_time->setDate( $year, $month, $day );
135 135
 
136
-         return $date_time;
136
+          return $date_time;
137 137
 
138 138
   },
139 139
 
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
       $date_time->setDate( $gregorian_year, $gregorian_month, $gregorian_day );
204 204
 
205 205
 
206
-     return $date_time;
206
+      return $date_time;
207 207
 
208 208
   },
209 209
 
@@ -264,30 +264,30 @@  discard block
 block discarded – undo
264 264
    */
265 265
   'days_of_week' => array (
266 266
 
267
-     'Yekshanbe',
268
-     'Doshanbe',
269
-     'Seshanbe',
270
-     'Chaharshanbe',
271
-     'Panjshanbe',
272
-     'Jome',
273
-     'Shanbe',
267
+      'Yekshanbe',
268
+      'Doshanbe',
269
+      'Seshanbe',
270
+      'Chaharshanbe',
271
+      'Panjshanbe',
272
+      'Jome',
273
+      'Shanbe',
274 274
 
275 275
   ),
276 276
 
277 277
   'start_day_of_week' => 'Shanbe',
278 278
 
279 279
   'month_days_number' => array(      1 => 31,
280
-                                     2 => 31,
281
-                                     3 => 31,
282
-                                     4 => 31,
283
-                                     5 => 31,
284
-                                     6 => 31,
285
-                                     7 => 30,
286
-                                     8 => 30,
287
-                                     9 => 30,
288
-                                     10 => 30,
289
-                                     11 => 30,
290
-                                     12 => 29 ),
280
+                                      2 => 31,
281
+                                      3 => 31,
282
+                                      4 => 31,
283
+                                      5 => 31,
284
+                                      6 => 31,
285
+                                      7 => 30,
286
+                                      8 => 30,
287
+                                      9 => 30,
288
+                                      10 => 30,
289
+                                      11 => 30,
290
+                                      12 => 29 ),
291 291
 
292 292
 
293 293
   'day_of_year' => function( $date_time ) {
@@ -354,4 +354,4 @@  discard block
 block discarded – undo
354 354
    */
355 355
   'weekend' => array( 'friday' )
356 356
 
357
- );
357
+  );
Please login to merge, or discard this patch.
Spacing   +57 added lines, -57 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 use Datium\Datium as Datium;
4 4
 use Datium\Tools\Leap as Leap;
5 5
 
6
-return array (
6
+return array(
7 7
 
8 8
   'timezone' => 'Asia/Tehran',
9 9
 
@@ -11,13 +11,13 @@  discard block
 block discarded – undo
11 11
 
12 12
   'events' => array(),
13 13
 
14
-  'numbers' => array( '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'),
14
+  'numbers' => array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9'),
15 15
 
16 16
   'am_time' => 'AM',
17 17
 
18 18
   'pm_time' => 'PM',
19 19
 
20
-  'end_of_days' => array( 'th', 'st', 'nd', 'rd' ),
20
+  'end_of_days' => array('th', 'st', 'nd', 'rd'),
21 21
 
22 22
 
23 23
 
@@ -29,19 +29,19 @@  discard block
 block discarded – undo
29 29
  *
30 30
  *\_________________________________________________________/
31 31
  */
32
-  'convert_to' => function( $date_time ) {
32
+  'convert_to' => function($date_time) {
33 33
 
34
-        $config = include( 'Gregorian.php' );
34
+        $config = include('Gregorian.php');
35 35
 
36
-        $year = $date_time->format( 'Y' );
36
+        $year = $date_time->format('Y');
37 37
 
38
-        $month = $date_time->format( 'm' );
38
+        $month = $date_time->format('m');
39 39
 
40
-        $day = $date_time->format( 'd' );
40
+        $day = $date_time->format('d');
41 41
 
42 42
         $temp_day = 0;
43 43
 
44
-         for ( $i = 1 ; $i < $month ; $i++ ) {
44
+         for ($i = 1; $i < $month; $i++) {
45 45
 
46 46
            $temp_day += $config['month_days_number'][$i];
47 47
 
@@ -49,13 +49,13 @@  discard block
 block discarded – undo
49 49
 
50 50
          $temp_day += $day;
51 51
 
52
-         $leap = new Leap( $year );
52
+         $leap = new Leap($year);
53 53
 
54
-         if( $leap->get() && $month > 2 ) $temp_day++;
54
+         if ($leap->get() && $month > 2) $temp_day++;
55 55
 
56
-         if ( $temp_day <= 79 ) {
56
+         if ($temp_day <= 79) {
57 57
 
58
-          if( ( $year - 1 ) % 4 == 0 )
58
+          if (($year - 1) % 4 == 0)
59 59
 
60 60
             $temp_day = $temp_day + 11;
61 61
 
@@ -65,9 +65,9 @@  discard block
 block discarded – undo
65 65
 
66 66
           $year = $year - 622;
67 67
 
68
-          if($temp_day % 30 == 0) {
68
+          if ($temp_day % 30 == 0) {
69 69
 
70
-            $month = ( $temp_day / 30 ) + 9;
70
+            $month = ($temp_day / 30) + 9;
71 71
 
72 72
             $day = 30;
73 73
 
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 
76 76
           else {
77 77
 
78
-            $month = ( $temp_day / 30 ) + 10;
78
+            $month = ($temp_day / 30) + 10;
79 79
 
80 80
             $day = $temp_day % 30;
81 81
 
@@ -89,20 +89,20 @@  discard block
 block discarded – undo
89 89
 
90 90
           $temp_day = $temp_day - 79;
91 91
 
92
-          if( $temp_day <= 186 ) {
92
+          if ($temp_day <= 186) {
93 93
 
94
-            if( $temp_day % 31 == 0 ) {
94
+            if ($temp_day % 31 == 0) {
95 95
 
96
-              $month = ( $temp_day / 31 );
96
+              $month = ($temp_day / 31);
97 97
 
98 98
               $day = 31;
99 99
             }
100 100
 
101 101
           else {
102 102
 
103
-            $month = ( $temp_day / 31 ) + 1;
103
+            $month = ($temp_day / 31) + 1;
104 104
 
105
-            $day = ( $temp_day % 31 );
105
+            $day = ($temp_day % 31);
106 106
           }
107 107
 
108 108
           }
@@ -111,9 +111,9 @@  discard block
 block discarded – undo
111 111
 
112 112
             $temp_day = $temp_day - 186;
113 113
 
114
-            if( $temp_day % 30 == 0 ) {
114
+            if ($temp_day % 30 == 0) {
115 115
 
116
-            $month = ( $temp_day / 30 ) + 6;
116
+            $month = ($temp_day / 30) + 6;
117 117
 
118 118
             $day = 30;
119 119
 
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
 
122 122
             else {
123 123
 
124
-            $month = ( $temp_day / 30 ) + 7;
124
+            $month = ($temp_day / 30) + 7;
125 125
 
126 126
             $day = $temp_day % 30;
127 127
 
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
 
132 132
          }
133 133
 
134
-         $date_time->setDate( $year, $month, $day );
134
+         $date_time->setDate($year, $month, $day);
135 135
 
136 136
          return $date_time;
137 137
 
@@ -145,9 +145,9 @@  discard block
 block discarded – undo
145 145
    *
146 146
    *\_________________________________________________________/
147 147
    */
148
-  'convert_from' => function( $date_time ) {
148
+  'convert_from' => function($date_time) {
149 149
 
150
-    $config = include( 'Jalali.php' );
150
+    $config = include('Jalali.php');
151 151
 
152 152
     $year = $date_time->format('Y');
153 153
 
@@ -157,41 +157,41 @@  discard block
 block discarded – undo
157 157
 
158 158
     $days_of_year = 0;
159 159
 
160
-    foreach ( $config['month_days_number'] as $mon => $value ) {
160
+    foreach ($config['month_days_number'] as $mon => $value) {
161 161
 
162
-      if( $month > $mon ) $days_of_year += $value;
162
+      if ($month > $mon) $days_of_year += $value;
163 163
 
164 164
     }
165 165
 
166 166
     $days_of_year += $day;
167 167
 
168
-    $days_of_leap_years =  intval( ( ( $year - 1 ) / 4 )  );
168
+    $days_of_leap_years = intval((($year - 1) / 4));
169 169
 
170
-    $days_of_shamsi_years = ( ( ( $year - 1 ) * 365 ) + $days_of_year + $days_of_leap_years );
170
+    $days_of_shamsi_years = ((($year - 1) * 365) + $days_of_year + $days_of_leap_years);
171 171
 
172 172
     $days_of_gregorain_years = $days_of_shamsi_years + 226899;
173 173
 
174
-    if ( $month < 10 )  {
174
+    if ($month < 10) {
175 175
 
176
-    $days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $year + 621 ) / 4 ) );
176
+    $days_of_gregorain_years = $days_of_gregorain_years - intval((($year + 621) / 4));
177 177
 
178 178
     }
179 179
 
180
-    elseif ( ( ( 10 == $month ) && ( $day > 10 ) ) || ( $month > 10 ) ) {
180
+    elseif (((10 == $month) && ($day > 10)) || ($month > 10)) {
181 181
 
182
-    $days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $year + 622 ) / 4 ) );
182
+    $days_of_gregorain_years = $days_of_gregorain_years - intval((($year + 622) / 4));
183 183
 
184 184
     }
185 185
 
186
-    $gregorian_month = ( $days_of_gregorain_years % 365 );
186
+    $gregorian_month = ($days_of_gregorain_years % 365);
187 187
 
188
-    $gregorian_year = intval( $days_of_gregorain_years / 365 ) + 1;
188
+    $gregorian_year = intval($days_of_gregorain_years / 365) + 1;
189 189
 
190
-    $config = include( 'Gregorian.php' );
190
+    $config = include('Gregorian.php');
191 191
 
192
-    foreach ( $config['month_days_number'] as $month => $value ) {
192
+    foreach ($config['month_days_number'] as $month => $value) {
193 193
 
194
-      if ( $gregorian_month < $value ) break;
194
+      if ($gregorian_month < $value) break;
195 195
 
196 196
         $gregorian_month -= $value;
197 197
     }
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
 
201 201
       $gregorian_month = $month;
202 202
 
203
-      $date_time->setDate( $gregorian_year, $gregorian_month, $gregorian_day );
203
+      $date_time->setDate($gregorian_year, $gregorian_month, $gregorian_day);
204 204
 
205 205
 
206 206
      return $date_time;
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
    *
226 226
    *\_________________________________________________________/
227 227
    */
228
-  'month' => array (
228
+  'month' => array(
229 229
 
230 230
     'Farvardin',
231 231
 
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
    */
265 265
 
266 266
 
267
-  'days_of_week' => array (
267
+  'days_of_week' => array(
268 268
 
269 269
      'Yekshanbe',
270 270
      'Doshanbe',
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
 
279 279
   'start_day_of_week' => 'Shanbe',
280 280
 
281
-  'month_days_number' => array(      1 => 31,
281
+  'month_days_number' => array(1 => 31,
282 282
                                      2 => 31,
283 283
                                      3 => 31,
284 284
                                      4 => 31,
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
                                      9 => 30,
290 290
                                      10 => 30,
291 291
                                      11 => 30,
292
-                                     12 => 29 ),
292
+                                     12 => 29),
293 293
 
294 294
   /************************************************************
295 295
   *                      Day of year
@@ -299,19 +299,19 @@  discard block
 block discarded – undo
299 299
   *
300 300
   *\_________________________________________________________/
301 301
   */
302
-  'day_of_year' => function( $date_time ) {
302
+  'day_of_year' => function($date_time) {
303 303
 
304 304
     $result = null;
305 305
 
306
-    $config = include( 'Jalali.php' );
306
+    $config = include('Jalali.php');
307 307
 
308 308
     $month = $date_time->format('n');
309 309
 
310 310
     $day = $date_time->format('d');
311 311
 
312
-    foreach( $config['month_days_number'] as $_month => $value ) {
312
+    foreach ($config['month_days_number'] as $_month => $value) {
313 313
 
314
-      if ( $_month < $month ) $result += $value;
314
+      if ($_month < $month) $result += $value;
315 315
 
316 316
     }
317 317
 
@@ -329,21 +329,21 @@  discard block
 block discarded – undo
329 329
    *  example : Yekshanbe = result is 2
330 330
    *\_________________________________________________________/
331 331
   */
332
-  'day_of_week' => function( $date_time ) {
332
+  'day_of_week' => function($date_time) {
333 333
 
334
-        $days = array( 1 => 'Shanbe',  2 => 'Yekshanbe', 3 => 'Doshanbe', 4 => 'Seshanbe', 5 => 'Chaharshanbe', 6 => 'Panjshanbe', 7 => 'Jome' );
334
+        $days = array(1 => 'Shanbe', 2 => 'Yekshanbe', 3 => 'Doshanbe', 4 => 'Seshanbe', 5 => 'Chaharshanbe', 6 => 'Panjshanbe', 7 => 'Jome');
335 335
 
336
-        $configShamsi = include(  'Jalali.php' );
336
+        $configShamsi = include('Jalali.php');
337 337
 
338
-        $configGregorian = include( 'Gregorian.php' );
338
+        $configGregorian = include('Gregorian.php');
339 339
 
340 340
         $day = $date_time->format('l');
341 341
 
342
-        $day = str_replace( $configGregorian['days_of_week'],$configShamsi['days_of_week'], $day );
342
+        $day = str_replace($configGregorian['days_of_week'], $configShamsi['days_of_week'], $day);
343 343
 
344
-        foreach ( $days as $key => $value ) {
344
+        foreach ($days as $key => $value) {
345 345
 
346
-          if( $day == $value ) {
346
+          if ($day == $value) {
347 347
 
348 348
               return $key;
349 349
           }
@@ -370,6 +370,6 @@  discard block
 block discarded – undo
370 370
    *
371 371
    *\_________________________________________________________/
372 372
    */
373
-  'weekend' => array( 'friday' )
373
+  'weekend' => array('friday')
374 374
 
375 375
  );
Please login to merge, or discard this patch.
Braces   +23 added lines, -27 removed lines patch added patch discarded remove patch
@@ -51,17 +51,19 @@  discard block
 block discarded – undo
51 51
 
52 52
          $leap = new Leap( $year );
53 53
 
54
-         if( $leap->get() && $month > 2 ) $temp_day++;
54
+         if( $leap->get() && $month > 2 ) {
55
+           $temp_day++;
56
+         }
55 57
 
56 58
          if ( $temp_day <= 79 ) {
57 59
 
58
-          if( ( $year - 1 ) % 4 == 0 )
59
-
60
+          if( ( $year - 1 ) % 4 == 0 ) {
61
+          
60 62
             $temp_day = $temp_day + 11;
61
-
62
-          else
63
-
63
+          } else {
64
+          
64 65
             $temp_day = $temp_day + 10;
66
+          }
65 67
 
66 68
           $year = $year - 622;
67 69
 
@@ -71,9 +73,7 @@  discard block
 block discarded – undo
71 73
 
72 74
             $day = 30;
73 75
 
74
-          }
75
-
76
-          else {
76
+          } else {
77 77
 
78 78
             $month = ( $temp_day / 30 ) + 10;
79 79
 
@@ -81,9 +81,7 @@  discard block
 block discarded – undo
81 81
 
82 82
           }
83 83
 
84
-         }
85
-
86
-         else {
84
+         } else {
87 85
 
88 86
           $year = $year - 621;
89 87
 
@@ -96,18 +94,14 @@  discard block
 block discarded – undo
96 94
               $month = ( $temp_day / 31 );
97 95
 
98 96
               $day = 31;
99
-            }
100
-
101
-          else {
97
+            } else {
102 98
 
103 99
             $month = ( $temp_day / 31 ) + 1;
104 100
 
105 101
             $day = ( $temp_day % 31 );
106 102
           }
107 103
 
108
-          }
109
-
110
-          else {
104
+          } else {
111 105
 
112 106
             $temp_day = $temp_day - 186;
113 107
 
@@ -117,9 +111,7 @@  discard block
 block discarded – undo
117 111
 
118 112
             $day = 30;
119 113
 
120
-            }
121
-
122
-            else {
114
+            } else {
123 115
 
124 116
             $month = ( $temp_day / 30 ) + 7;
125 117
 
@@ -159,7 +151,9 @@  discard block
 block discarded – undo
159 151
 
160 152
     foreach ( $config['month_days_number'] as $mon => $value ) {
161 153
 
162
-      if( $month > $mon ) $days_of_year += $value;
154
+      if( $month > $mon ) {
155
+        $days_of_year += $value;
156
+      }
163 157
 
164 158
     }
165 159
 
@@ -175,9 +169,7 @@  discard block
 block discarded – undo
175 169
 
176 170
     $days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $year + 621 ) / 4 ) );
177 171
 
178
-    }
179
-
180
-    elseif ( ( ( 10 == $month ) && ( $day > 10 ) ) || ( $month > 10 ) ) {
172
+    } elseif ( ( ( 10 == $month ) && ( $day > 10 ) ) || ( $month > 10 ) ) {
181 173
 
182 174
     $days_of_gregorain_years = $days_of_gregorain_years - intval( ( ( $year + 622 ) / 4 ) );
183 175
 
@@ -191,7 +183,9 @@  discard block
 block discarded – undo
191 183
 
192 184
     foreach ( $config['month_days_number'] as $month => $value ) {
193 185
 
194
-      if ( $gregorian_month < $value ) break;
186
+      if ( $gregorian_month < $value ) {
187
+        break;
188
+      }
195 189
 
196 190
         $gregorian_month -= $value;
197 191
     }
@@ -302,7 +296,9 @@  discard block
 block discarded – undo
302 296
 
303 297
     foreach( $config['month_days_number'] as $_month => $value ) {
304 298
 
305
-      if ( $_month < $month ) $result += $value;
299
+      if ( $_month < $month ) {
300
+        $result += $value;
301
+      }
306 302
 
307 303
     }
308 304
 
Please login to merge, or discard this patch.
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.
test.php 1 patch
Spacing   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -3,83 +3,83 @@
 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( 1394, 9, 24 )->from( 'jalali' )->get() );
10
-var_dump( Datium::create( 2020, 07, 11 )->to( 'jalali' )->get() );
11
-var_dump( Datium::create( 2020, 07, 11 )->to( 'hijri' )->get() );
8
+require_once('vendor/autoload.php');
9
+var_dump(Datium::create(1394, 9, 24)->from('jalali')->get());
10
+var_dump(Datium::create(2020, 07, 11)->to('jalali')->get());
11
+var_dump(Datium::create(2020, 07, 11)->to('hijri')->get());
12 12
 echo '<br>this year:<br>';
13
-var_dump( Datium::create( 2016, 6, 25, 12, 0, 0 )->to( 'hijri' )->lang( 'ar' )->get('h:i:s Y F jS l') );
13
+var_dump(Datium::create(2016, 6, 25, 12, 0, 0)->to('hijri')->lang('ar')->get('h:i:s Y F jS l'));
14 14
 echo "<br>";
15
-var_dump( Datium::now()->to( 'jalali' )->get('l jS F Y h:i:s A') );
15
+var_dump(Datium::now()->to('jalali')->get('l jS F Y h:i:s A'));
16 16
 echo "<br>";
17
-var_dump( Datium::now()->to( 'jalali' )->lang('fa')->get('l jS F Y h:i:s A') );
17
+var_dump(Datium::now()->to('jalali')->lang('fa')->get('l jS F Y h:i:s A'));
18 18
 echo "<br>";
19
-var_dump( Datium::now()->to( 'jalali' )->sub('3 year')->get() );
19
+var_dump(Datium::now()->to('jalali')->sub('3 year')->get());
20 20
 echo "<br>";
21
-var_dump( Datium::now()->to( 'jalali' )->add('3 year')->get() );
21
+var_dump(Datium::now()->to('jalali')->add('3 year')->get());
22 22
 echo "<br>";
23
-var_dump( Datium::now()->get( 'l jS F Y h:i:s A' ) );
23
+var_dump(Datium::now()->get('l jS F Y h:i:s A'));
24 24
 echo "<br>Leap year ";
25
-var_dump( Datium::now()->leap()->get() );
25
+var_dump(Datium::now()->leap()->get());
26 26
 echo "<br>Create new DateTime: ";
27
-var_dump( Datium::create(2000, 1, 1, 0, 0, 0)->get() );
27
+var_dump(Datium::create(2000, 1, 1, 0, 0, 0)->get());
28 28
 echo "<br>";
29 29
 echo 'Is next year leap? ';
30
-var_dump( Datium::now()->add('1 year')->leap()->get() );
30
+var_dump(Datium::now()->add('1 year')->leap()->get());
31 31
 echo "<br>";
32 32
 echo "Day of Year in gregorian:";
33 33
 echo "<br>";
34
-var_dump( Datium::now()->dayOf()->year() );
34
+var_dump(Datium::now()->dayOf()->year());
35 35
 echo "<br>";
36 36
 echo "Day of Year in jalali:";
37 37
 echo "<br>";
38
-var_dump( Datium::now()->to('jalali')->dayOf()->year() );
38
+var_dump(Datium::now()->to('jalali')->dayOf()->year());
39 39
 echo "<br>";
40 40
 echo "Day of Year in hijri:";
41 41
 echo "<br>";
42
-var_dump( Datium::now()->to( 'hijri' )->dayOf()->year() );
42
+var_dump(Datium::now()->to('hijri')->dayOf()->year());
43 43
 echo "<br>";
44 44
 echo "Day of Week : gregorian";
45 45
 echo "<br>";
46
-var_dump( Datium::now()->dayOf()->week() );
46
+var_dump(Datium::now()->dayOf()->week());
47 47
 echo "<br>";
48 48
 echo "Day of Week in Date(2015, 1, 1)";
49 49
 echo "<br>";
50
-var_dump( Datium::create( 2015, 1, 1 )->dayOf()->week() );
50
+var_dump(Datium::create(2015, 1, 1)->dayOf()->week());
51 51
 echo "<br>";
52 52
 echo "Day of Week : jalali";
53 53
 echo "<br>";
54
-var_dump( Datium::now()->to('jalali')->dayOf()->week() );
54
+var_dump(Datium::now()->to('jalali')->dayOf()->week());
55 55
 echo "<br>";
56 56
 echo "Day of Week in Date(2015, 1, 1)";
57 57
 echo "<br>";
58
-var_dump( Datium::create( 2015, 1, 1 )->to('jalali')->dayOf()->week() );
58
+var_dump(Datium::create(2015, 1, 1)->to('jalali')->dayOf()->week());
59 59
 echo "<br>";
60 60
 echo "Change date form gregorian to jalali with method: ";
61
-var_dump( Datium::create( 1989, 10, 27 )->to( 'jalali' )->get( 'l jS F Y h:i:s A' ) );
61
+var_dump(Datium::create(1989, 10, 27)->to('jalali')->get('l jS F Y h:i:s A'));
62 62
 echo "<br>";
63
-var_dump( Datium::now()->to( 'hijri' )->get( 'l jS F Y h:i:s A' ) );
63
+var_dump(Datium::now()->to('hijri')->get('l jS F Y h:i:s A'));
64 64
 echo "<br>";
65
-var_dump( Datium::now()->to( 'hijri' )->lang( 'ar' )->get( 'h:i:s Y F jS l' ) );
65
+var_dump(Datium::now()->to('hijri')->lang('ar')->get('h:i:s Y F jS l'));
66 66
 echo "<br>";
67 67
 echo "<br>is persian holiday? ";
68 68
 // var_dump(  Datium::between( Datium::now()->object() , Datium::now()->add( '3 month' )->object() )->events()->local( 'us' )->local( 'ir' )->get() );
69 69
 echo 'return international days';
70 70
 // var_dump(  Datium::between( Datium::now()->object() , Datium::now()->add('4 month')->object() )->events()->international()->get() );
71 71
 echo 'Convert gregorian to perisan';
72
-var_dump( Datium::now()->to('jalali')->get() );
72
+var_dump(Datium::now()->to('jalali')->get());
73 73
 echo 'Today\'s events:';
74 74
 // var_dump( Datium::now()->events()->local( 'ir' )->get() );
75 75
 echo 'Date diff';
76
-$diff = Datium::diff( Datium::now()->object(), Datium::now()->add('5 day')->object() );
77
-var_dump( $diff->days );
78
-var_dump( Datium::create( 2015, 11, 9 )->to( 'hijri' )->get() );
76
+$diff = Datium::diff(Datium::now()->object(), Datium::now()->add('5 day')->object());
77
+var_dump($diff->days);
78
+var_dump(Datium::create(2015, 11, 9)->to('hijri')->get());
79 79
 
80 80
 
81
-} catch (Exception $e ) {
81
+} catch (Exception $e) {
82 82
 
83
-  var_dump( $e );
83
+  var_dump($e);
84 84
 
85 85
 }
Please login to merge, or discard this patch.