Completed
Push — master ( 7eb1a4...254269 )
by LEUNG
03:41
created
src/Command/JwtCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,9 +38,9 @@
 block discarded – undo
38 38
 
39 39
         $config = config('jwt');
40 40
         $config['default']['signerKey'] = randomKey();
41
-        $config = 'return ' . Helpers::dump($config) . ';';
41
+        $config = 'return '.Helpers::dump($config).';';
42 42
 
43
-        file_put_contents($this->app->getConfigPath() . 'jwt.php', $file . $config);
43
+        file_put_contents($this->app->getConfigPath().'jwt.php', $file.$config);
44 44
         $output->writeln('> success!');
45 45
     }
46 46
 }
Please login to merge, or discard this patch.
src/Jwt.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -33,9 +33,9 @@
 block discarded – undo
33 33
      */
34 34
     private $manager;
35 35
 
36
-     /**
37
-     * @var Builder
38
-     */
36
+        /**
37
+         * @var Builder
38
+         */
39 39
     private $builder;
40 40
 
41 41
     use \xiaodi\JWTAuth\Traits\Jwt;
Please login to merge, or discard this patch.