Completed
Push — master ( 633d9d...a47ae7 )
by MeWebStudio - Muharrem
10s
created
src/Captcha.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -232,8 +232,7 @@  discard block
 block discarded – undo
232 232
                 $this->height
233 233
             );
234 234
             $this->canvas->insert($this->image);
235
-        }
236
-        else
235
+        } else
237 236
         {
238 237
             $this->image = $this->canvas;
239 238
         }
@@ -351,8 +350,7 @@  discard block
 block discarded – undo
351 350
         if ( ! empty($this->fontColors))
352 351
         {
353 352
             $color = $this->fontColors[rand(0, count($this->fontColors) - 1)];
354
-        }
355
-        else
353
+        } else
356 354
         {
357 355
             $color = [rand(0, 255), rand(0, 255), rand(0, 255)];
358 356
         }
Please login to merge, or discard this patch.
src/CaptchaServiceProvider.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
             //Laravel 5.2.x
28 28
             $this->app['router']->get('captcha/{config?}', '\Mews\Captcha\CaptchaController@getCaptcha')->middleware('web');
29 29
         } else if (strpos($this->app->version(), 'Lumen') !== false) {
30
-             //Laravel Lumen
30
+                //Laravel Lumen
31 31
             $this->app['router']->get('captcha[/{config?}]', '\Mews\Captcha\LumenCaptchaController@getCaptcha');
32 32
         } else {
33 33
             //Laravel 5.0.x ~ 5.1.x
Please login to merge, or discard this patch.