Completed
Push — master ( 5981e6...969234 )
by mehdi
02:52
created
src/CalendarSettings/Gregorian.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -4,13 +4,13 @@  discard block
 block discarded – undo
4 4
 
5 5
  return [
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
  'am_time' => 'AM',
10 10
 
11 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
 
@@ -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
        'Monday',
103 103
        'Tuesday',
@@ -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,10 +120,10 @@  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
 
@@ -135,9 +135,9 @@  discard block
 block discarded – undo
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
         }
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
 
149 149
     },
150 150
 
151
-    'day_of_week' => function ( $date_time ) {
151
+    'day_of_week' => function($date_time) {
152 152
 
153 153
         $config = include 'Gregorian.php';
154 154
 
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
 
157 157
         foreach ($config['days_of_week'] as $key => $value) {
158 158
 
159
-            if ($value == $day ) { return $key += 1;
159
+            if ($value == $day) { return $key += 1;
160 160
             }
161 161
 
162 162
         }
@@ -181,6 +181,6 @@  discard block
 block discarded – undo
181 181
     *
182 182
     *\_________________________________________________________/
183 183
     */
184
-    'weekend' => array( 'saturday', 'sunday' ),
184
+    'weekend' => array('saturday', 'sunday'),
185 185
 
186 186
   ];
Please login to merge, or discard this patch.