Completed
Push — master ( dcb340...01907b )
by mehdi
02:17
created
src/CalendarSettings/Gregorian.php 1 patch
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -137,7 +137,9 @@  discard block
 block discarded – undo
137 137
 
138 138
      foreach( $config['month_days_number'] as $_month => $value ) {
139 139
 
140
-       if ( $_month < $month ) $result += $value;
140
+       if ( $_month < $month ) {
141
+         $result += $value;
142
+       }
141 143
 
142 144
      }
143 145
 
@@ -155,7 +157,9 @@  discard block
 block discarded – undo
155 157
 
156 158
     foreach ($config['days_of_week'] as $key => $value) {
157 159
 
158
-      if ( $value == $day ) return $key += 1;
160
+      if ( $value == $day ) {
161
+        return $key += 1;
162
+      }
159 163
 
160 164
     }
161 165
 
Please login to merge, or discard this patch.
src/CalendarSettings/Hijri.php 1 patch
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,9 @@  discard block
 block discarded – undo
34 34
 
35 35
       $leap = new Datium\Tools\Leap( $year );
36 36
 
37
-     if( $leap->get() && $month > 11 ) $temp_day++;
37
+     if( $leap->get() && $month > 11 ) {
38
+       $temp_day++;
39
+     }
38 40
 
39 41
      $_year = ( ( ( ( ( $year - 1 ) * 365.2422 ) + $temp_day ) - 119) / 354.3670 ) + 1;
40 42
 
@@ -110,7 +112,9 @@  discard block
 block discarded – undo
110 112
 
111 113
      foreach ( $config['month_days_number'] as $month => $value ) {
112 114
 
113
-       if( $month > $month ) $days_of_year += $value;
115
+       if( $month > $month ) {
116
+         $days_of_year += $value;
117
+       }
114 118
 
115 119
      }
116 120
 
Please login to merge, or discard this patch.
src/CalendarSettings/Jalali.php 1 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 1 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.