Passed
Push — develop ( ec03b4...36c2b4 )
by nguereza
02:46
created
src/Http/Middleware/CorsMiddleware.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -162,14 +162,14 @@
 block discarded – undo
162 162
     {
163 163
         if ($this->isPreflight()) {
164 164
             $this->setOrigin()
165
-                 ->setMaxAge()
166
-                 ->setAllowCredentials()
167
-                 ->setAllowMethods()
168
-                 ->setAllowHeaders();
165
+                    ->setMaxAge()
166
+                    ->setAllowCredentials()
167
+                    ->setAllowMethods()
168
+                    ->setAllowHeaders();
169 169
         } else {
170 170
             $this->setOrigin()
171
-                 ->setExposedHeaders()
172
-                 ->setAllowCredentials();
171
+                    ->setExposedHeaders()
172
+                    ->setAllowCredentials();
173 173
         }
174 174
     }
175 175
 
Please login to merge, or discard this patch.