Passed
Push — master ( 0e7627...09a47c )
by BENOIT
01:58
created
src/Command/ServeCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
         $logger = $this->logger ?? new ConsoleLogger($output, [LogLevel::INFO => OutputInterface::VERBOSITY_NORMAL]);
39 39
         try {
40 40
             $config = Configuration::bootstrapFromCLI($input)->asArray();
41
-            $loop->futureTick(function () use ($config, $output) {
41
+            $loop->futureTick(function() use ($config, $output) {
42 42
                 $this->displayConfiguration($config, $output);
43 43
             });
44 44
 
Please login to merge, or discard this patch.
src/Command/GenerateJWTCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -206,7 +206,7 @@
 block discarded – undo
206 206
             $value = $io->ask(
207 207
                 'TTL of this token in seconds (or hit ENTER for no expiration):',
208 208
                 null,
209
-                function ($value) {
209
+                function($value) {
210 210
                     if (null === $value) {
211 211
                         return null;
212 212
                     }
Please login to merge, or discard this patch.