@@ -47,7 +47,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 | /** |