Completed
Push — master ( ccb61a...c8b97f )
by
unknown
02:19
created
vendor/composer/autoload_psr4.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,6 +6,6 @@
 block discarded – undo
6 6
 $baseDir = dirname($vendorDir);
7 7
 
8 8
 return array(
9
-    'Datium\\Tools\\' => array($baseDir . '/src'),
10
-    'Datium\\' => array($baseDir . '/src', $baseDir . '/src/Events'),
9
+    'Datium\\Tools\\' => array($baseDir.'/src'),
10
+    'Datium\\' => array($baseDir.'/src', $baseDir.'/src/Events'),
11 11
 );
Please login to merge, or discard this patch.
src/CalendarSettings/Gregorian.php 4 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.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -131,7 +131,9 @@
 block discarded – undo
131 131
 
132 132
      foreach( $config['month_days_number'] as $month => $value ) {
133 133
 
134
-       if ( $_month < $month ) $result += $value;
134
+       if ( $_month < $month ) {
135
+         $result += $value;
136
+       }
135 137
 
136 138
      }
137 139
 
Please login to merge, or discard this patch.
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@  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
- 'numbers' => array( '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'),
7
+ 'numbers' => array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9'),
8 8
 
9 9
  'day_to_nigh' => 'AM',
10 10
 
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
   *
23 23
   *\_________________________________________________________/
24 24
   */
25
-   'convert_to' => function( $date_time ) {
25
+   'convert_to' => function($date_time) {
26 26
 
27 27
      return null;
28 28
 
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     *
37 37
     *\_________________________________________________________/
38 38
     */
39
-   'convert_from' => function( $date_time ) {
39
+   'convert_from' => function($date_time) {
40 40
 
41 41
      return null;
42 42
 
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
     *
98 98
     *\_________________________________________________________/
99 99
     */
100
-   'days_of_week' => array (
100
+   'days_of_week' => array(
101 101
 
102 102
        'Saturday',
103 103
        'Sunday',
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
 
110 110
    ),
111 111
 
112
-   'month_days_number' => array(   1 => 31,
112
+   'month_days_number' => array(1 => 31,
113 113
                                    2 => 28,
114 114
                                    3 => 31,
115 115
                                    4 => 30,
@@ -120,24 +120,24 @@  discard block
 block discarded – undo
120 120
                                    9 => 30,
121 121
                                    10 => 31,
122 122
                                    11 => 30,
123
-                                   12 => 30 ),
123
+                                   12 => 30),
124 124
 
125 125
 
126
-   'day_of_year' => function( $date_time ) {
126
+   'day_of_year' => function($date_time) {
127 127
 
128 128
      $result = null;
129 129
 
130 130
      $_month = null;
131 131
 
132
-     $config = include( 'Gregorian.php' );
132
+     $config = include('Gregorian.php');
133 133
 
134 134
      $month = $date_time->format('n');
135 135
 
136 136
      $day = $date_time->format('d');
137 137
 
138
-     foreach( $config['month_days_number'] as $_month => $value ) {
138
+     foreach ($config['month_days_number'] as $_month => $value) {
139 139
 
140
-       if ( $_month < $month ) $result += $value;
140
+       if ($_month < $month) $result += $value;
141 141
 
142 142
      }
143 143
 
@@ -147,9 +147,9 @@  discard block
 block discarded – undo
147 147
 
148 148
    },
149 149
 
150
-  'day_of_week' => function( $date_time ) {
150
+  'day_of_week' => function($date_time) {
151 151
 
152
-       return date( 'w', strtotime( $date_time->format('Y-m-d H:i:s') ) );
152
+       return date('w', strtotime($date_time->format('Y-m-d H:i:s')));
153 153
 
154 154
    },
155 155
 
@@ -171,6 +171,6 @@  discard block
 block discarded – undo
171 171
     *
172 172
     *\_________________________________________________________/
173 173
     */
174
-   'weekend' => array( 'friday' )
174
+   'weekend' => array('friday')
175 175
 
176 176
   );
Please login to merge, or discard this patch.
Indentation   +58 added lines, -58 removed lines patch added patch discarded remove patch
@@ -1,20 +1,20 @@  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
- 'numbers' => array( '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'),
7
+  'numbers' => array( '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'),
8 8
 
9
- 'day_to_nigh' => 'AM',
9
+  'day_to_nigh' => 'AM',
10 10
 
11
- 'night_to_day' => 'PM',
11
+  'night_to_day' => 'PM',
12 12
 
13
- 'end_of_days_number' => 'th',
13
+  'end_of_days_number' => 'th',
14 14
 
15 15
 
16 16
 
17
- /************************************************************
17
+  /************************************************************
18 18
   *                        Convert to
19 19
   ************************************************************
20 20
   *
@@ -22,13 +22,13 @@  discard block
 block discarded – undo
22 22
   *
23 23
   *\_________________________________________________________/
24 24
   */
25
-   'convert_to' => function( $date_time ) {
25
+    'convert_to' => function( $date_time ) {
26 26
 
27
-     return null;
27
+      return null;
28 28
 
29
-   },
29
+    },
30 30
 
31
-   /************************************************************
31
+    /************************************************************
32 32
     *                        Convert From
33 33
     ************************************************************
34 34
     *
@@ -36,13 +36,13 @@  discard block
 block discarded – undo
36 36
     *
37 37
     *\_________________________________________________________/
38 38
     */
39
-   'convert_from' => function( $date_time ) {
39
+    'convert_from' => function( $date_time ) {
40 40
 
41
-     return null;
41
+      return null;
42 42
 
43
-   },
43
+    },
44 44
 
45
-   /************************************************************
45
+    /************************************************************
46 46
     *               Shorthand for jalali calendar
47 47
     ************************************************************
48 48
     *
@@ -50,9 +50,9 @@  discard block
 block discarded – undo
50 50
     *
51 51
     *\_________________________________________________________/
52 52
     */
53
-   'shorthand' => 'gr',
53
+    'shorthand' => 'gr',
54 54
 
55
-   /************************************************************
55
+    /************************************************************
56 56
     *                        Month's name
57 57
     ************************************************************
58 58
     *
@@ -86,9 +86,9 @@  discard block
 block discarded – undo
86 86
 
87 87
       'December'
88 88
 
89
-     ),
89
+      ),
90 90
 
91
-   /************************************************************
91
+    /************************************************************
92 92
     *                        Days of Week
93 93
     ************************************************************
94 94
     *
@@ -97,64 +97,64 @@  discard block
 block discarded – undo
97 97
     *
98 98
     *\_________________________________________________________/
99 99
     */
100
-   'days_of_week' => array (
100
+    'days_of_week' => array (
101 101
 
102
-       'Sunday',
103
-       'Monday',
104
-       'Tuesday',
105
-       'Wednesday',
106
-       'Thursday',
107
-       'Friday',
108
-       'Saturday'
102
+        'Sunday',
103
+        'Monday',
104
+        'Tuesday',
105
+        'Wednesday',
106
+        'Thursday',
107
+        'Friday',
108
+        'Saturday'
109 109
 
110 110
 
111
-   ),
111
+    ),
112 112
 
113
-   'month_days_number' => array(   1 => 31,
114
-                                   2 => 28,
115
-                                   3 => 31,
116
-                                   4 => 30,
117
-                                   5 => 31,
118
-                                   6 => 30,
119
-                                   7 => 31,
120
-                                   8 => 31,
121
-                                   9 => 30,
122
-                                   10 => 31,
123
-                                   11 => 30,
124
-                                   12 => 30 ),
113
+    'month_days_number' => array(   1 => 31,
114
+                                    2 => 28,
115
+                                    3 => 31,
116
+                                    4 => 30,
117
+                                    5 => 31,
118
+                                    6 => 30,
119
+                                    7 => 31,
120
+                                    8 => 31,
121
+                                    9 => 30,
122
+                                    10 => 31,
123
+                                    11 => 30,
124
+                                    12 => 30 ),
125 125
 
126 126
 
127
-   'day_of_year' => function( $date_time ) {
127
+    'day_of_year' => function( $date_time ) {
128 128
 
129
-     $result = null;
129
+      $result = null;
130 130
 
131
-     $_month = null;
131
+      $_month = null;
132 132
 
133
-     $config = include( 'Gregorian.php' );
133
+      $config = include( 'Gregorian.php' );
134 134
 
135
-     $month = $date_time->format('n');
135
+      $month = $date_time->format('n');
136 136
 
137
-     $day = $date_time->format('d');
137
+      $day = $date_time->format('d');
138 138
 
139
-     foreach( $config['month_days_number'] as $_month => $value ) {
139
+      foreach( $config['month_days_number'] as $_month => $value ) {
140 140
 
141
-       if ( $_month < $month ) $result += $value;
141
+        if ( $_month < $month ) $result += $value;
142 142
 
143
-     }
143
+      }
144 144
 
145
-     $result += $day;
145
+      $result += $day;
146 146
 
147
-     return $result;
147
+      return $result;
148 148
 
149
-   },
149
+    },
150 150
 
151 151
   'day_of_week' => function( $date_time ) {
152 152
 
153
-       return date( 'w', strtotime( $date_time->format('Y-m-d H:i:s') ) );
153
+        return date( 'w', strtotime( $date_time->format('Y-m-d H:i:s') ) );
154 154
 
155
-   },
155
+    },
156 156
 
157
-   /************************************************************
157
+    /************************************************************
158 158
     *                       Leap year
159 159
     ************************************************************
160 160
     *
@@ -162,9 +162,9 @@  discard block
 block discarded – undo
162 162
     *
163 163
     *\_________________________________________________________/
164 164
     */
165
-   'leap_year' => null,
165
+    'leap_year' => null,
166 166
 
167
-   /************************************************************
167
+    /************************************************************
168 168
     *                        Weekend
169 169
     ************************************************************
170 170
     *
@@ -172,6 +172,6 @@  discard block
 block discarded – undo
172 172
     *
173 173
     *\_________________________________________________________/
174 174
     */
175
-   'weekend' => array( 'friday' )
175
+    'weekend' => array( 'friday' )
176 176
 
177 177
   );
Please login to merge, or discard this patch.
src/CalendarSettings/Ghamari.php 3 patches
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.
Spacing   +47 added lines, -47 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
         '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,7 +217,7 @@  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
    'day_to_nigh' => 'AM',
223 223
 
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
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,21 +239,21 @@  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
-     'day_of_year' => function( $date_time ) {
244
+     'day_of_year' => function($date_time) {
245 245
 
246 246
        $result = null;
247 247
 
248
-       $config = include( 'Ghamari.php' );
248
+       $config = include('Ghamari.php');
249 249
 
250 250
        $month = $date_time->format('n');
251 251
 
252 252
        $day = $date_time->format('d');
253 253
 
254
-       foreach( $config['month_days_number'] as $_month => $value ) {
254
+       foreach ($config['month_days_number'] as $_month => $value) {
255 255
 
256
-         if ( $_month < $month ) {
256
+         if ($_month < $month) {
257 257
 
258 258
            $result += $value;
259 259
 
@@ -267,19 +267,19 @@  discard block
 block discarded – undo
267 267
 
268 268
      },
269 269
 
270
-     'day_of_week' => function( $date_time ) {
270
+     'day_of_week' => function($date_time) {
271 271
 
272
-       $configGhamari = include(   'Ghamari.php' );
272
+       $configGhamari = include('Ghamari.php');
273 273
 
274
-       $configGregorian = include( 'Gregorian.php' );
274
+       $configGregorian = include('Gregorian.php');
275 275
 
276 276
        $day = $date_time->format('l');
277 277
 
278
-       $day = str_replace( $configGregorian['days_of_week'], $configGhamari['days_of_week'], $day);
278
+       $day = str_replace($configGregorian['days_of_week'], $configGhamari['days_of_week'], $day);
279 279
 
280
-       foreach ( $configGhamari['days_of_week'] as $key => $value ) {
280
+       foreach ($configGhamari['days_of_week'] as $key => $value) {
281 281
 
282
-         if( $value == $day ) {
282
+         if ($value == $day) {
283 283
 
284 284
            return $key += 1;
285 285
 
@@ -307,6 +307,6 @@  discard block
 block discarded – undo
307 307
     *
308 308
     *\_________________________________________________________/
309 309
     */
310
-   'weekend' => array( 'friday' )
310
+   'weekend' => array('friday')
311 311
 
312 312
   );
Please login to merge, or discard this patch.
Indentation   +120 added lines, -120 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,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,90 +206,90 @@  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
-   'day_to_nigh' => 'AM',
222
+    'day_to_nigh' => 'AM',
223 223
 
224
-   'night_to_day' => 'PM',
224
+    'night_to_day' => 'PM',
225 225
 
226
-   'end_of_days_number' => 'th',
226
+    'end_of_days_number' => 'th',
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
-     'day_of_year' => function( $date_time ) {
244
+      'day_of_year' => function( $date_time ) {
245 245
 
246
-       $result = null;
246
+        $result = null;
247 247
 
248
-       $config = include( 'Ghamari.php' );
248
+        $config = include( 'Ghamari.php' );
249 249
 
250
-       $month = $date_time->format('n');
250
+        $month = $date_time->format('n');
251 251
 
252
-       $day = $date_time->format('d');
252
+        $day = $date_time->format('d');
253 253
 
254
-       foreach( $config['month_days_number'] as $_month => $value ) {
254
+        foreach( $config['month_days_number'] as $_month => $value ) {
255 255
 
256
-         if ( $_month < $month ) {
256
+          if ( $_month < $month ) {
257 257
 
258
-           $result += $value;
258
+            $result += $value;
259 259
 
260
-         }
260
+          }
261 261
 
262
-       }
262
+        }
263 263
 
264
-       $result += $day;
264
+        $result += $day;
265 265
 
266
-       return $result;
266
+        return $result;
267 267
 
268
-     },
268
+      },
269 269
 
270
-     'day_of_week' => function( $date_time ) {
270
+      'day_of_week' => function( $date_time ) {
271 271
 
272
-       $configGhamari = include(   'Ghamari.php' );
272
+        $configGhamari = include(   'Ghamari.php' );
273 273
 
274
-       $configGregorian = include( 'Gregorian.php' );
274
+        $configGregorian = include( 'Gregorian.php' );
275 275
 
276
-       $day = $date_time->format('l');
276
+        $day = $date_time->format('l');
277 277
 
278
-       $day = str_replace( $configGregorian['days_of_week'], $configGhamari['days_of_week'], $day);
278
+        $day = str_replace( $configGregorian['days_of_week'], $configGhamari['days_of_week'], $day);
279 279
 
280
-       foreach ( $configGhamari['days_of_week'] as $key => $value ) {
280
+        foreach ( $configGhamari['days_of_week'] as $key => $value ) {
281 281
 
282
-         if( $value == $day ) {
282
+          if( $value == $day ) {
283 283
 
284
-           return $key += 1;
284
+            return $key += 1;
285 285
 
286
-         }
286
+          }
287 287
 
288
-       }
288
+        }
289 289
 
290
-     },
290
+      },
291 291
 
292
-     /************************************************************
292
+      /************************************************************
293 293
       *                       Leap year
294 294
       ************************************************************
295 295
       *
@@ -297,9 +297,9 @@  discard block
 block discarded – undo
297 297
       *
298 298
       *\_________________________________________________________/
299 299
       */
300
-     'leap_year' => null,
300
+      'leap_year' => null,
301 301
 
302
-   /************************************************************
302
+    /************************************************************
303 303
     *                        Weekend
304 304
     ************************************************************
305 305
     *
@@ -307,6 +307,6 @@  discard block
 block discarded – undo
307 307
     *
308 308
     *\_________________________________________________________/
309 309
     */
310
-   'weekend' => array( 'friday' )
310
+    'weekend' => array( 'friday' )
311 311
 
312 312
   );
Please login to merge, or discard this patch.
src/Config.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -125,4 +125,4 @@
 block discarded – undo
125 125
    */
126 126
   'weekend' => array( 'friday' )
127 127
 
128
- );
128
+  );
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,9 +35,9 @@
 block discarded – undo
35 35
   'default_calendar' => 'gregorian',
36 36
 
37 37
 
38
-  'date_interval' => array( 'D', 'M', 'Y', 'H', 'm', 'S' ),
38
+  'date_interval' => array('D', 'M', 'Y', 'H', 'm', 'S'),
39 39
 
40 40
 
41
-  'date_simple' => array( 'day', ' month', ' year', ' hour', ' minute', ' second' ),
41
+  'date_simple' => array('day', ' month', ' year', ' hour', ' minute', ' second'),
42 42
 
43 43
  );
Please login to merge, or discard this patch.
src/Datium.php 3 patches
Doc Comments   +9 added lines, -5 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
   /**
139 139
    * Get current datetime
140 140
    * @since Aug 17 2015
141
-   * @return object
141
+   * @return Datium
142 142
    */
143 143
   public static function now() {
144 144
 
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
    * @param $hour integer
157 157
    * @param $minute integer
158 158
    * @param $second integer
159
-   * @return object
159
+   * @return Datium
160 160
    */
161 161
   public static function create( $year = 2000, $month = 1, $day = 1, $hour = 0, $minute = 0, $second = 0 ) {
162 162
 
@@ -195,6 +195,7 @@  discard block
 block discarded – undo
195 195
 
196 196
   /**
197 197
    * Convert from current calendar, what type is current calendar?
198
+   * @param string $calendar
198 199
    */
199 200
   public function from( $calendar ) {
200 201
 
@@ -213,6 +214,9 @@  discard block
 block discarded – undo
213 214
 
214 215
   }
215 216
 
217
+  /**
218
+   * @param string $calendar
219
+   */
216 220
   public function to( $calendar ) {
217 221
 
218 222
     $this->convert = new Convert( $this->date_time );
@@ -245,7 +249,7 @@  discard block
 block discarded – undo
245 249
   /**
246 250
    * Add new date value to current date
247 251
    * @param $value string
248
-   * @return object
252
+   * @return Datium
249 253
    */
250 254
   public function add( $value ) {
251 255
 
@@ -262,7 +266,7 @@  discard block
 block discarded – undo
262 266
   /**
263 267
    * Sub date from current date
264 268
    * @param $value
265
-   * @return obejct
269
+   * @return Datium
266 270
    */
267 271
   public function sub( $value ) {
268 272
 
@@ -278,7 +282,7 @@  discard block
 block discarded – undo
278 282
 
279 283
   /**
280 284
    * Check if current year is leap or not
281
-   * @return boolean
285
+   * @return Leap
282 286
    */
283 287
   public function leap( $type = 'gregorian') {
284 288
 
Please login to merge, or discard this patch.
Spacing   +55 added lines, -55 removed lines patch added patch discarded remove patch
@@ -72,17 +72,17 @@  discard block
 block discarded – undo
72 72
 
73 73
     $this->config = include('Config.php');
74 74
 
75
-    $this->calendar_type = $this->config[ 'default_calendar' ];
75
+    $this->calendar_type = $this->config['default_calendar'];
76 76
 
77
-    date_default_timezone_set( $this->config['timezone'] );
77
+    date_default_timezone_set($this->config['timezone']);
78 78
 
79 79
     $this->calendar_type = 'gregorian';
80 80
 
81
-    switch( Datium::$call_type ) {
81
+    switch (Datium::$call_type) {
82 82
 
83 83
       case 'now':
84 84
 
85
-        $this->date_time = new DateTime( 'now' );
85
+        $this->date_time = new DateTime('now');
86 86
 
87 87
         $this->gregorian_DayofWeek = $this->date_time->format('w');
88 88
 
@@ -90,11 +90,11 @@  discard block
 block discarded – undo
90 90
 
91 91
       case 'make':
92 92
 
93
-        $this->date_time = new DateTime( 'now' );
93
+        $this->date_time = new DateTime('now');
94 94
 
95
-        $this->date_time->setDate( self::$array_date['year'], self::$array_date['month'], self::$array_date['day'] );
95
+        $this->date_time->setDate(self::$array_date['year'], self::$array_date['month'], self::$array_date['day']);
96 96
 
97
-        $this->date_time->setTime( self::$array_date['hour'], self::$array_date['minute'], self::$array_date['second'] );
97
+        $this->date_time->setTime(self::$array_date['hour'], self::$array_date['minute'], self::$array_date['second']);
98 98
 
99 99
         $this->gregorian_DayofWeek = $this->date_time->format('w');
100 100
 
@@ -123,17 +123,17 @@  discard block
 block discarded – undo
123 123
 
124 124
     return (object) array(
125 125
 
126
-      'second' => $this->date_time->format( 's' ),
126
+      'second' => $this->date_time->format('s'),
127 127
 
128
-      'minute' => $this->date_time->format( 'm' ),
128
+      'minute' => $this->date_time->format('m'),
129 129
 
130
-      'hour' => $this->date_time->format( 'H' ),
130
+      'hour' => $this->date_time->format('H'),
131 131
 
132
-      'day' => $this->date_time->format( 'd' ),
132
+      'day' => $this->date_time->format('d'),
133 133
 
134
-      'month' => $this->date_time->format( 'm' ),
134
+      'month' => $this->date_time->format('m'),
135 135
 
136
-      'year' => $this->date_time->format( 'Y' )
136
+      'year' => $this->date_time->format('Y')
137 137
 
138 138
     );
139 139
 
@@ -162,12 +162,12 @@  discard block
 block discarded – undo
162 162
    * @param $second integer
163 163
    * @return object
164 164
    */
165
-  public static function create( $year = 2000, $month = 1, $day = 1, $hour = 0, $minute = 0, $second = 0 ) {
165
+  public static function create($year = 2000, $month = 1, $day = 1, $hour = 0, $minute = 0, $second = 0) {
166 166
 
167 167
       /**
168 168
        * When we want to set a Datetime object to Datium
169 169
        */
170
-      if( func_num_args() === 1 ) {
170
+      if (func_num_args() === 1) {
171 171
 
172 172
         self::$static_date_time = func_get_arg(0);
173 173
 
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
 
176 176
       } else {
177 177
 
178
-        self::$array_date = array( 'year' => $year, 'month' => $month, 'day' => $day, 'hour' => $hour, 'minute' => $minute, 'second' => $second );
178
+        self::$array_date = array('year' => $year, 'month' => $month, 'day' => $day, 'hour' => $hour, 'minute' => $minute, 'second' => $second);
179 179
 
180 180
         self::$call_type = 'make';
181 181
 
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
 
186 186
   }
187 187
 
188
-  public static function between( $date_start, $date_end ) {
188
+  public static function between($date_start, $date_end) {
189 189
 
190 190
     self::$date_start = $date_start;
191 191
 
@@ -200,11 +200,11 @@  discard block
 block discarded – undo
200 200
   /**
201 201
    * Convert from current calendar, what type is current calendar?
202 202
    */
203
-  public function from( $calendar ) {
203
+  public function from($calendar) {
204 204
 
205
-    $this->convert = new Convert( $this->date_time );
205
+    $this->convert = new Convert($this->date_time);
206 206
 
207
-    $this->date_time = $this->convert->from( $calendar );
207
+    $this->date_time = $this->convert->from($calendar);
208 208
 
209 209
 
210 210
     /**
@@ -218,11 +218,11 @@  discard block
 block discarded – undo
218 218
 
219 219
   }
220 220
 
221
-  public function to( $calendar ) {
221
+  public function to($calendar) {
222 222
 
223
-    $this->convert = new Convert( $this->date_time );
223
+    $this->convert = new Convert($this->date_time);
224 224
 
225
-    $this->date_time = $this->convert->to( $calendar );
225
+    $this->date_time = $this->convert->to($calendar);
226 226
 
227 227
     /**
228 228
      * We need this part for DayOf class
@@ -241,9 +241,9 @@  discard block
 block discarded – undo
241 241
    * @param $start datetime
242 242
    * @param $end datetime
243 243
    */
244
-  public static function diff( $start, $end ) {
244
+  public static function diff($start, $end) {
245 245
 
246
-    return date_diff( $start, $end );
246
+    return date_diff($start, $end);
247 247
 
248 248
   }
249 249
 
@@ -252,13 +252,13 @@  discard block
 block discarded – undo
252 252
    * @param $value string
253 253
    * @return object
254 254
    */
255
-  public function add( $value ) {
255
+  public function add($value) {
256 256
 
257
-    $this->date_interval_expression = str_replace( $this->config['date_simple'], $this->config['date_interval'], $value );
257
+    $this->date_interval_expression = str_replace($this->config['date_simple'], $this->config['date_interval'], $value);
258 258
 
259
-    $this->date_interval_expression = str_replace( ' ', '', 'P' . $this->date_interval_expression );
259
+    $this->date_interval_expression = str_replace(' ', '', 'P'.$this->date_interval_expression);
260 260
 
261
-    $this->date_time->add( new DateInterval( $this->date_interval_expression ) );
261
+    $this->date_time->add(new DateInterval($this->date_interval_expression));
262 262
 
263 263
     return $this;
264 264
 
@@ -269,13 +269,13 @@  discard block
 block discarded – undo
269 269
    * @param $value
270 270
    * @return obejct
271 271
    */
272
-  public function sub( $value ) {
272
+  public function sub($value) {
273 273
 
274
-    $this->date_interval_expression = str_replace( $this->config['date_simple'], $this->config['date_interval'], $value );
274
+    $this->date_interval_expression = str_replace($this->config['date_simple'], $this->config['date_interval'], $value);
275 275
 
276
-    $this->date_interval_expression = str_replace( ' ', '', 'P' . $this->date_interval_expression );
276
+    $this->date_interval_expression = str_replace(' ', '', 'P'.$this->date_interval_expression);
277 277
 
278
-    $this->date_time->sub( new DateInterval( $this->date_interval_expression ) );
278
+    $this->date_time->sub(new DateInterval($this->date_interval_expression));
279 279
 
280 280
     return $this;
281 281
 
@@ -285,9 +285,9 @@  discard block
 block discarded – undo
285 285
    * Check if current year is leap or not
286 286
    * @return boolean
287 287
    */
288
-  public function leap( $type = 'gregorian') {
288
+  public function leap($type = 'gregorian') {
289 289
 
290
-    $this->leap = new Leap( $this->date_time->format( 'Y' ), $type );
290
+    $this->leap = new Leap($this->date_time->format('Y'), $type);
291 291
 
292 292
     return $this->leap;
293 293
 
@@ -298,7 +298,7 @@  discard block
 block discarded – undo
298 298
    */
299 299
   public function dayOf() {
300 300
 
301
-    $this->day_of = new DayOf( $this->date_time, $this->calendar_type );
301
+    $this->day_of = new DayOf($this->date_time, $this->calendar_type);
302 302
 
303 303
     return $this->day_of;
304 304
 
@@ -309,13 +309,13 @@  discard block
 block discarded – undo
309 309
    */
310 310
   public function events() {
311 311
 
312
-    if ( Datium::$call_type == 'between' ) {
312
+    if (Datium::$call_type == 'between') {
313 313
 
314
-      $this->events = new Events( Datium::$date_start, Datium::$date_end );
314
+      $this->events = new Events(Datium::$date_start, Datium::$date_end);
315 315
 
316 316
     } else {
317 317
 
318
-      $this->events = new Events( $this->date_time );
318
+      $this->events = new Events($this->date_time);
319 319
 
320 320
     }
321 321
 
@@ -332,17 +332,17 @@  discard block
 block discarded – undo
332 332
    *
333 333
    *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
334 334
    */
335
-  public function object(){
335
+  public function object() {
336 336
 
337 337
     return $this->date_time;
338 338
 
339 339
   }
340 340
 
341
-  public function lang( $language = 'fa' ){
341
+  public function lang($language = 'fa') {
342 342
 
343 343
   $this->result = new Lang();
344 344
 
345
-  $this->result->setConfig( $language );
345
+  $this->result->setConfig($language);
346 346
 
347 347
   $this->toConfig = $this->result->getConfig();
348 348
 
@@ -356,29 +356,29 @@  discard block
 block discarded – undo
356 356
    * @param $calendar string
357 357
    * @param $format string
358 358
    */
359
-  public function get( $format = 'Y-m-d H:i:s' ) {
359
+  public function get($format = 'Y-m-d H:i:s') {
360 360
 
361
-    if( is_null( $this->fromConfig ) )
362
-      $this->fromConfig = include( 'CalendarSettings/' . ucfirst( $this->translate_from ) . '.php' );
361
+    if (is_null($this->fromConfig))
362
+      $this->fromConfig = include('CalendarSettings/'.ucfirst($this->translate_from).'.php');
363 363
 
364
-    if( is_null( $this->toConfig ) )
365
-        $this->toConfig = include( 'CalendarSettings/' . ucfirst( $this->translate_to ) . '.php' );
364
+    if (is_null($this->toConfig))
365
+        $this->toConfig = include('CalendarSettings/'.ucfirst($this->translate_to).'.php');
366 366
 
367
-      $string_date = $this->date_time->format( $format );
367
+      $string_date = $this->date_time->format($format);
368 368
 
369
-      if( $this->translate_to != 'gregorian' ) {
369
+      if ($this->translate_to != 'gregorian') {
370 370
 
371
-      $string_date = str_replace( $this->fromConfig['month'], $this->toConfig['month'],  $string_date );
371
+      $string_date = str_replace($this->fromConfig['month'], $this->toConfig['month'], $string_date);
372 372
 
373
-      $string_date = str_replace( $this->fromConfig['days_of_week'], $this->toConfig['days_of_week'][$this->gregorian_DayofWeek],  $string_date );
373
+      $string_date = str_replace($this->fromConfig['days_of_week'], $this->toConfig['days_of_week'][$this->gregorian_DayofWeek], $string_date);
374 374
 
375
-      $string_date = str_replace( $this->fromConfig['numbers'], $this->toConfig['numbers'], $string_date );
375
+      $string_date = str_replace($this->fromConfig['numbers'], $this->toConfig['numbers'], $string_date);
376 376
 
377
-      $string_date = str_replace( $this->fromConfig['day_to_nigh'], $this->toConfig['day_to_nigh'], $string_date );
377
+      $string_date = str_replace($this->fromConfig['day_to_nigh'], $this->toConfig['day_to_nigh'], $string_date);
378 378
 
379
-      $string_date = str_replace( $this->fromConfig['night_to_day'], $this->toConfig['night_to_day'], $string_date );
379
+      $string_date = str_replace($this->fromConfig['night_to_day'], $this->toConfig['night_to_day'], $string_date);
380 380
 
381
-      $string_date = str_replace( $this->fromConfig['end_of_days_number'], $this->toConfig['end_of_days_number'], $string_date );
381
+      $string_date = str_replace($this->fromConfig['end_of_days_number'], $this->toConfig['end_of_days_number'], $string_date);
382 382
 
383 383
 
384 384
     }
Please login to merge, or discard this patch.
Braces   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -358,11 +358,13 @@
 block discarded – undo
358 358
    */
359 359
   public function get( $format = 'Y-m-d H:i:s' ) {
360 360
 
361
-    if( is_null( $this->fromConfig ) )
362
-      $this->fromConfig = include( 'CalendarSettings/' . ucfirst( $this->translate_from ) . '.php' );
361
+    if( is_null( $this->fromConfig ) ) {
362
+          $this->fromConfig = include( 'CalendarSettings/' . ucfirst( $this->translate_from ) . '.php' );
363
+    }
363 364
 
364
-    if( is_null( $this->toConfig ) )
365
-        $this->toConfig = include( 'CalendarSettings/' . ucfirst( $this->translate_to ) . '.php' );
365
+    if( is_null( $this->toConfig ) ) {
366
+            $this->toConfig = include( 'CalendarSettings/' . ucfirst( $this->translate_to ) . '.php' );
367
+    }
366 368
 
367 369
       $string_date = $this->date_time->format( $format );
368 370
 
Please login to merge, or discard this patch.
src/DayOf.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -19,9 +19,9 @@  discard block
 block discarded – undo
19 19
 
20 20
   protected $geregorian_DayofWeek;
21 21
 
22
-  public function __construct( $date_time, $calendar_type = 'gregorian' ) {
22
+  public function __construct($date_time, $calendar_type = 'gregorian') {
23 23
 
24
-    $this->config = include( 'Config.php' );
24
+    $this->config = include('Config.php');
25 25
 
26 26
     $this->date_time = $date_time;
27 27
 
@@ -38,9 +38,9 @@  discard block
 block discarded – undo
38 38
    */
39 39
   public function year() {
40 40
 
41
-    $this->config = include(  'CalendarSettings/' . ucfirst( $this->calendar_type ) . '.php' );
41
+    $this->config = include('CalendarSettings/'.ucfirst($this->calendar_type).'.php');
42 42
 
43
-    return $this->config[ 'day_of_year' ]( $this->date_time );
43
+    return $this->config['day_of_year']($this->date_time);
44 44
 
45 45
   }
46 46
 
@@ -52,9 +52,9 @@  discard block
 block discarded – undo
52 52
    */
53 53
   public function week() {
54 54
 
55
-    $this->config = include(  'CalendarSettings/' . ucfirst( $this->calendar_type ) . '.php' );
55
+    $this->config = include('CalendarSettings/'.ucfirst($this->calendar_type).'.php');
56 56
 
57
-    return $this->config[ 'day_of_week' ]( $this->date_time );
57
+    return $this->config['day_of_week']($this->date_time);
58 58
 
59 59
   }
60 60
 
Please login to merge, or discard this patch.
src/CalendarSettings/Shamsi.php 3 patches
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.
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
 
@@ -265,30 +265,30 @@  discard block
 block discarded – undo
265 265
   'days_of_week' => array (
266 266
 
267 267
 
268
-     'Yekshanbe',
269
-     'Doshanbe',
270
-     'Seshanbe',
271
-     'Chaharshanbe',
272
-     'Panjshanbe',
273
-     'Jome',
274
-     'Shanbe'
268
+      'Yekshanbe',
269
+      'Doshanbe',
270
+      'Seshanbe',
271
+      'Chaharshanbe',
272
+      'Panjshanbe',
273
+      'Jome',
274
+      'Shanbe'
275 275
   ),
276 276
 
277 277
 
278 278
   'start_day_of_week' => 'Shanbe',
279 279
 
280 280
   'month_days_number' => array(      1 => 31,
281
-                                     2 => 31,
282
-                                     3 => 31,
283
-                                     4 => 31,
284
-                                     5 => 31,
285
-                                     6 => 31,
286
-                                     7 => 30,
287
-                                     8 => 30,
288
-                                     9 => 30,
289
-                                     10 => 30,
290
-                                     11 => 30,
291
-                                     12 => 29 ),
281
+                                      2 => 31,
282
+                                      3 => 31,
283
+                                      4 => 31,
284
+                                      5 => 31,
285
+                                      6 => 31,
286
+                                      7 => 30,
287
+                                      8 => 30,
288
+                                      9 => 30,
289
+                                      10 => 30,
290
+                                      11 => 30,
291
+                                      12 => 29 ),
292 292
 
293 293
 
294 294
   'day_of_year' => function( $date_time ) {
@@ -355,4 +355,4 @@  discard block
 block discarded – undo
355 355
    */
356 356
   'weekend' => array( 'friday' )
357 357
 
358
- );
358
+  );
Please login to merge, or discard this patch.
Spacing   +55 added lines, -55 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,7 +11,7 @@  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
   'day_to_nigh' => 'AM',
17 17
 
@@ -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( 'Shamsi.php' );
150
+    $config = include('Shamsi.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
 
@@ -262,7 +262,7 @@  discard block
 block discarded – undo
262 262
    *
263 263
    *\_________________________________________________________/
264 264
    */
265
-  'days_of_week' => array (
265
+  'days_of_week' => array(
266 266
 
267 267
 
268 268
      'Yekshanbe',
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
 
278 278
   'start_day_of_week' => 'Shanbe',
279 279
 
280
-  'month_days_number' => array(      1 => 31,
280
+  'month_days_number' => array(1 => 31,
281 281
                                      2 => 31,
282 282
                                      3 => 31,
283 283
                                      4 => 31,
@@ -288,22 +288,22 @@  discard block
 block discarded – undo
288 288
                                      9 => 30,
289 289
                                      10 => 30,
290 290
                                      11 => 30,
291
-                                     12 => 29 ),
291
+                                     12 => 29),
292 292
 
293 293
 
294
-  'day_of_year' => function( $date_time ) {
294
+  'day_of_year' => function($date_time) {
295 295
 
296 296
     $result = null;
297 297
 
298
-    $config = include( 'Shamsi.php' );
298
+    $config = include('Shamsi.php');
299 299
 
300 300
     $month = $date_time->format('n');
301 301
 
302 302
     $day = $date_time->format('d');
303 303
 
304
-    foreach( $config['month_days_number'] as $_month => $value ) {
304
+    foreach ($config['month_days_number'] as $_month => $value) {
305 305
 
306
-      if ( $_month < $month ) $result += $value;
306
+      if ($_month < $month) $result += $value;
307 307
 
308 308
     }
309 309
 
@@ -313,19 +313,19 @@  discard block
 block discarded – undo
313 313
 
314 314
   },
315 315
 
316
-  'day_of_week' => function( $date_time ) {
316
+  'day_of_week' => function($date_time) {
317 317
 
318
-        $configShamsi = include(  'Shamsi.php' );
318
+        $configShamsi = include('Shamsi.php');
319 319
 
320
-        $configGregorian = include( 'Gregorian.php' );
320
+        $configGregorian = include('Gregorian.php');
321 321
 
322 322
         $day = $date_time->format('l');
323 323
 
324
-        $day = str_replace( $configGregorian['days_of_week'], $configShamsi['days_of_week'], $day );
324
+        $day = str_replace($configGregorian['days_of_week'], $configShamsi['days_of_week'], $day);
325 325
 
326
-        foreach ( $configShamsi['days_of_week'] as $key => $value ) {
326
+        foreach ($configShamsi['days_of_week'] as $key => $value) {
327 327
 
328
-          if( $day == $value ) {
328
+          if ($day == $value) {
329 329
 
330 330
               return $key += 1;
331 331
 
@@ -353,6 +353,6 @@  discard block
 block discarded – undo
353 353
    *
354 354
    *\_________________________________________________________/
355 355
    */
356
-  'weekend' => array( 'friday' )
356
+  'weekend' => array('friday')
357 357
 
358 358
  );
Please login to merge, or discard this patch.
src/Lang.php 2 patches
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -40,21 +40,21 @@
 block discarded – undo
40 40
       /**
41 41
        * Fetch translated file to config attribute
42 42
        */
43
-       self::$config = include('src/CalendarSettings/Shamsi.php');
43
+        self::$config = include('src/CalendarSettings/Shamsi.php');
44 44
 
45
-       /**
46
-        * Fetch translated expression to langTable attribute
47
-        */
48
-       self::$langTable = include('lang/' . $language . '/general.php');
45
+        /**
46
+         * Fetch translated expression to langTable attribute
47
+         */
48
+        self::$langTable = include('lang/' . $language . '/general.php');
49 49
 
50
-       foreach( self::$langTable as $key => $translate ){
50
+        foreach( self::$langTable as $key => $translate ){
51 51
 
52
-         if(  self::$config[ $key ] ) {
52
+          if(  self::$config[ $key ] ) {
53 53
 
54
-           self::$config[ $key ] = $translate;
54
+            self::$config[ $key ] = $translate;
55 55
 
56
-         }
57
-       }
56
+          }
57
+        }
58 58
 
59 59
     }
60 60
 
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
      *
36 36
      *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
37 37
      */
38
-    public static function setConfig( $language ) {
38
+    public static function setConfig($language) {
39 39
 
40 40
       /**
41 41
        * Fetch translated file to config attribute
@@ -45,13 +45,13 @@  discard block
 block discarded – undo
45 45
        /**
46 46
         * Fetch translated expression to langTable attribute
47 47
         */
48
-       self::$langTable = include('lang/' . $language . '/general.php');
48
+       self::$langTable = include('lang/'.$language.'/general.php');
49 49
 
50
-       foreach( self::$langTable as $key => $translate ){
50
+       foreach (self::$langTable as $key => $translate) {
51 51
 
52
-         if(  self::$config[ $key ] ) {
52
+         if (self::$config[$key]) {
53 53
 
54
-           self::$config[ $key ] = $translate;
54
+           self::$config[$key] = $translate;
55 55
 
56 56
          }
57 57
        }
Please login to merge, or discard this patch.
test.php 1 patch
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -3,50 +3,50 @@  discard block
 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( 'shamsi' )->get() );
10
-var_dump( Datium::create( 2020, 07, 11 )->to( 'shamsi' )->get() );
11
-var_dump( Datium::create( 2020, 07, 11 )->to( 'ghamari' )->get() );
8
+require_once('vendor/autoload.php');
9
+var_dump(Datium::create(1394, 9, 24)->from('shamsi')->get());
10
+var_dump(Datium::create(2020, 07, 11)->to('shamsi')->get());
11
+var_dump(Datium::create(2020, 07, 11)->to('ghamari')->get());
12 12
 echo '<br>this year:<br>';
13
-var_dump( Datium::now()->to( 'shamsi' )->lang( 'fa' )->get('l jS F Y h:i:s A') );
13
+var_dump(Datium::now()->to('shamsi')->lang('fa')->get('l jS F Y h:i:s A'));
14 14
 echo "<br>";
15
-var_dump( Datium::now()->to( 'shamsi' )->get('l jS F Y h:i:s A') );
15
+var_dump(Datium::now()->to('shamsi')->get('l jS F Y h:i:s A'));
16 16
 echo "<br>";
17
-var_dump( Datium::now()->to( 'shamsi' )->sub('3 year')->get() );
17
+var_dump(Datium::now()->to('shamsi')->sub('3 year')->get());
18 18
 echo "<br>";
19
-var_dump( Datium::now()->to( 'shamsi' )->add('3 year')->get() );
19
+var_dump(Datium::now()->to('shamsi')->add('3 year')->get());
20 20
 echo "<br>";
21
-var_dump( Datium::now()->get( 'l jS F Y h:i:s A' ) );
21
+var_dump(Datium::now()->get('l jS F Y h:i:s A'));
22 22
 echo "<br>Leap year ";
23
-var_dump( Datium::now()->leap()->get() );
23
+var_dump(Datium::now()->leap()->get());
24 24
 echo "<br>Create new DateTime: ";
25
-var_dump( Datium::create(2000, 1, 1, 0, 0, 0)->get() );
25
+var_dump(Datium::create(2000, 1, 1, 0, 0, 0)->get());
26 26
 echo "<br>";
27 27
 echo 'Is next year leap? ';
28
-var_dump( Datium::now()->add('1 year')->leap()->get() );
28
+var_dump(Datium::now()->add('1 year')->leap()->get());
29 29
 echo "<br>";
30 30
 echo "Day of Year in gregorian:";
31 31
 echo "<br>";
32
-var_dump( Datium::now()->dayOf()->year() );
32
+var_dump(Datium::now()->dayOf()->year());
33 33
 echo "<br>";
34 34
 echo "Day of Year in shamsi:";
35 35
 echo "<br>";
36
-var_dump( Datium::now()->to('shamsi')->dayOf()->year() );
36
+var_dump(Datium::now()->to('shamsi')->dayOf()->year());
37 37
 echo "<br>";
38 38
 echo "Day of Year in ghamari:";
39 39
 echo "<br>";
40
-var_dump( Datium::now()->to( 'ghamari' )->dayOf()->year() );
40
+var_dump(Datium::now()->to('ghamari')->dayOf()->year());
41 41
 echo "<br>";
42 42
 echo "Day of Week";
43 43
 echo "<br>";
44
-var_dump( Datium::now()->dayOf()->week() );
44
+var_dump(Datium::now()->dayOf()->week());
45 45
 echo "<br>";
46 46
 echo "Change date form gregorian to shamsi with method: ";
47
-var_dump( Datium::create( 1989, 10, 27 )->to( 'shamsi' )->get( 'l jS F Y h:i:s A' ) );
47
+var_dump(Datium::create(1989, 10, 27)->to('shamsi')->get('l jS F Y h:i:s A'));
48 48
 echo "<br>";
49
-var_dump( Datium::now()->to( 'ghamari' )->get( 'l jS F Y h:i:s A' ) );
49
+var_dump(Datium::now()->to('ghamari')->get('l jS F Y h:i:s A'));
50 50
 echo "<br>";
51 51
 echo "<br>";
52 52
 echo "<br>is persian holiday? ";
@@ -54,17 +54,17 @@  discard block
 block discarded – undo
54 54
 echo 'return international days';
55 55
 // var_dump(  Datium::between( Datium::now()->object() , Datium::now()->add('4 month')->object() )->events()->international()->get() );
56 56
 echo 'Convert gregorian to perisan';
57
-var_dump( Datium::now()->to('shamsi')->get() );
57
+var_dump(Datium::now()->to('shamsi')->get());
58 58
 echo 'Today\'s events:';
59 59
 // var_dump( Datium::now()->events()->local( 'ir' )->get() );
60 60
 echo 'Date diff';
61
-$diff = Datium::diff( Datium::now()->object(), Datium::now()->add('5 day')->object() );
62
-var_dump( $diff->days );
63
-var_dump( Datium::create( 2015, 11, 9 )->to( 'ghamari' )->get() );
61
+$diff = Datium::diff(Datium::now()->object(), Datium::now()->add('5 day')->object());
62
+var_dump($diff->days);
63
+var_dump(Datium::create(2015, 11, 9)->to('ghamari')->get());
64 64
 
65 65
 
66
-} catch (Exception $e ) {
66
+} catch (Exception $e) {
67 67
 
68
-  var_dump( $e );
68
+  var_dump($e);
69 69
 
70 70
 }
Please login to merge, or discard this patch.