Completed
Push — master ( 9eb452...a0cd38 )
by Kirill
04:51 queued 01:32
created
src/Application.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 use Railt\Console\Language\GraphQLLanguage;
13 13
 use Railt\Console\Language\LanguageInterface;
14 14
 use Railt\Console\Language\PHPLanguage;
15
-use Railt\Container\ContainerInterface;
16 15
 use Symfony\Component\Console\Application as Symfony;
17 16
 use Symfony\Component\Console\Command\Command;
18 17
 use Symfony\Component\Console\Input\ArgvInput;
Please login to merge, or discard this patch.
src/Command.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
             $parser = new SignatureParser($this->signature);
48 48
 
49 49
             $this->setName($parser->getName());
50
-            $this->setDescription($this->description ?: \get_class($this) . ' command');
50
+            $this->setDescription($this->description ?: \get_class($this).' command');
51 51
 
52 52
             foreach ($parser->getArguments() as $argument) {
53 53
                 $this->getDefinition()->addArgument($argument);
Please login to merge, or discard this patch.