@@ -3,7 +3,6 @@ |
||
| 3 | 3 | namespace Mews\Captcha; |
| 4 | 4 | |
| 5 | 5 | use Illuminate\Routing\Controller; |
| 6 | -use Illuminate\Config\Repository; |
|
| 7 | 6 | |
| 8 | 7 | /** |
| 9 | 8 | * Class CaptchaController |
@@ -21,7 +21,7 @@ |
||
| 21 | 21 | */ |
| 22 | 22 | public function getCaptcha(Captcha $captcha, $config = 'default') |
| 23 | 23 | { |
| 24 | - return $captcha->create($config)->response(config(['captcha.' . $config . '.type' => 'png']), config(['captcha.' . $config . 'quality' => 90])); |
|
| 24 | + return $captcha->create($config)->response(config(['captcha.'.$config.'.type' => 'png']), config(['captcha.'.$config.'quality' => 90])); |
|
| 25 | 25 | } |
| 26 | 26 | |
| 27 | 27 | } |