Passed
Push — master ( 5caefd...2c19c4 )
by Alexander
06:26
created
src/components/Encryption/EncryptionServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
             }            
Please login to merge, or discard this patch.