Completed
Pull Request — master (#333)
by
unknown
15s
created
src/CaptchaServiceProvider.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,8 +74,8 @@
 block discarded – undo
74 74
             'captcha'
75 75
         );
76 76
 
77
-         // Bind the ImageManager with an explicit driver
78
-         if (!$this->app->bound('Intervention\Image\ImageManager')) {
77
+            // Bind the ImageManager with an explicit driver
78
+            if (!$this->app->bound('Intervention\Image\ImageManager')) {
79 79
             $this->app->singleton('Intervention\Image\ImageManager', function ($app) {
80 80
                 // Determine which driver to use, defaulting to 'gd'
81 81
                 $driver = config('captcha.driver', 'gd') === 'imagick' ? new ImagickDriver() : new GdDriver();
Please login to merge, or discard this patch.
src/Captcha.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -158,8 +158,8 @@
 block discarded – undo
158 158
     protected $blur = 0;
159 159
 
160 160
         /**
161
-     * @var string
162
-     */
161
+         * @var string
162
+         */
163 163
     protected $bgsDirectory;
164 164
 
165 165
     /**
Please login to merge, or discard this patch.