Completed
Push — master ( 01907b...5981e6 )
by mehdi
03:03
created
src/Leap.php 1 patch
Switch Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -132,23 +132,23 @@
 block discarded – undo
132 132
 
133 133
         switch ( $this->type ) {
134 134
 
135
-        case 'gregorian':
135
+          case 'gregorian':
136 136
 
137
-            $this->result = $this->gregorinLeapYear();
137
+              $this->result = $this->gregorinLeapYear();
138 138
 
139
-            break;
139
+              break;
140 140
 
141
-        case 'jalali':
141
+          case 'jalali':
142 142
 
143
-            $this->result = $this->jalaliLeapYear();
143
+              $this->result = $this->jalaliLeapYear();
144 144
 
145
-            break;
145
+              break;
146 146
 
147
-        case 'hijri':
147
+          case 'hijri':
148 148
 
149
-            $this->result = $this->hijriLeapYear();
149
+              $this->result = $this->hijriLeapYear();
150 150
 
151
-            break;
151
+              break;
152 152
         }
153 153
 
154 154
         return $this->result;
Please login to merge, or discard this patch.
src/Datium.php 1 patch
Switch Indentation   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -113,39 +113,39 @@
 block discarded – undo
113 113
 
114 114
         switch( Datium::$call_type ) {
115 115
 
116
-        case 'now':
116
+          case 'now':
117 117
 
118
-            $this->date_time = new DateTime('now');
118
+              $this->date_time = new DateTime('now');
119 119
 
120
-            $this->gregorian_DayofWeek = $this->date_time->format('w');
120
+              $this->gregorian_DayofWeek = $this->date_time->format('w');
121 121
 
122
-            break;
122
+              break;
123 123
 
124
-        case 'make':
124
+          case 'make':
125 125
 
126
-            $this->date_time = new DateTime('now');
126
+              $this->date_time = new DateTime('now');
127 127
 
128
-            $this->date_time->setDate(
129
-                self::$array_date[ 'year' ],
130
-                self::$array_date[ 'month' ],
131
-                self::$array_date[ 'day' ]
132
-            );
128
+              $this->date_time->setDate(
129
+                  self::$array_date[ 'year' ],
130
+                  self::$array_date[ 'month' ],
131
+                  self::$array_date[ 'day' ]
132
+              );
133 133
 
134
-            $this->date_time->setTime(
135
-                self::$array_date[ 'hour' ],
136
-                self::$array_date[ 'minute' ],
137
-                self::$array_date[ 'second' ]
138
-            );
134
+              $this->date_time->setTime(
135
+                  self::$array_date[ 'hour' ],
136
+                  self::$array_date[ 'minute' ],
137
+                  self::$array_date[ 'second' ]
138
+              );
139 139
 
140
-            $this->gregorian_DayofWeek = $this->date_time->format('w');
140
+              $this->gregorian_DayofWeek = $this->date_time->format('w');
141 141
 
142
-            break;
142
+              break;
143 143
 
144
-        case 'set':
144
+          case 'set':
145 145
 
146
-            $this->date_time = Datium::$static_date_time;
146
+              $this->date_time = Datium::$static_date_time;
147 147
 
148
-            $this->gregorian_DayofWeek = $this->date_time->format('w');
148
+              $this->gregorian_DayofWeek = $this->date_time->format('w');
149 149
 
150 150
         }
151 151
 
Please login to merge, or discard this patch.
src/Events/Events.php 1 patch
Switch Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -143,19 +143,19 @@
 block discarded – undo
143 143
 
144 144
                 switch ( $this->local[ 'default_calendar' ] ) {
145 145
 
146
-                case 'jalali':
146
+                  case 'jalali':
147 147
 
148
-                    $this->date_time->setDate(1394, $month, $day);
148
+                      $this->date_time->setDate(1394, $month, $day);
149 149
 
150
-                    $this->date_time = Datium::create($this->date_time)->from('jalali')->to('gregorian')->object(); //$this->convert->jalaliToGregorian( $this->date_time );
150
+                      $this->date_time = Datium::create($this->date_time)->from('jalali')->to('gregorian')->object(); //$this->convert->jalaliToGregorian( $this->date_time );
151 151
 
152
-                    break;
152
+                      break;
153 153
 
154
-                case 'hijri':
154
+                  case 'hijri':
155 155
 
156
-                    $this->date_time = Datium::create($this->date_time)->from('hijri')->to('gregorian')->object(); // $this->convert->hijriToGregorian( $this->date_time );
156
+                      $this->date_time = Datium::create($this->date_time)->from('hijri')->to('gregorian')->object(); // $this->convert->hijriToGregorian( $this->date_time );
157 157
 
158
-                    break;
158
+                      break;
159 159
 
160 160
                 }
161 161
 
Please login to merge, or discard this patch.