@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | */ |
40 | 40 | public function register() |
41 | 41 | { |
42 | - $this->app->singleton('encrypter', function ($app) { |
|
42 | + $this->app->singleton('encrypter', function($app) { |
|
43 | 43 | $config = $app->make('config')->get('security'); |
44 | 44 | |
45 | 45 | return new Encrypter($this->parseKey($config), $config['cipher']); |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | */ |
74 | 74 | protected function key(array $config) |
75 | 75 | { |
76 | - return take($config['key'], function ($key) { |
|
76 | + return take($config['key'], function($key) { |
|
77 | 77 | if (empty($key)) { |
78 | 78 | throw new MissingAppKeyException; |
79 | 79 | } |