Passed
Push — master ( d844e8...d8175f )
by Kirill
02:14
created
src/Command.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 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);
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
      */
125 125
     protected function info(string $message): void
126 126
     {
127
-        $this->writeln('<info>' . $message . '</info>');
127
+        $this->writeln('<info>'.$message.'</info>');
128 128
     }
129 129
 
130 130
     /**
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
      */
133 133
     protected function error(string $message): void
134 134
     {
135
-        $this->writeln('<error>' . $message . '</error>');
135
+        $this->writeln('<error>'.$message.'</error>');
136 136
     }
137 137
 
138 138
     /**
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
      */
141 141
     protected function comment(string $message): void
142 142
     {
143
-        $this->writeln('<comment>' . $message . '</comment>');
143
+        $this->writeln('<comment>'.$message.'</comment>');
144 144
     }
145 145
 
146 146
     /**
Please login to merge, or discard this patch.