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