@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | } |
90 | 90 | |
91 | 91 | $shell = $input->getArgument('shell') ?? self::guessShell(); |
92 | - $completionFile = __DIR__.'/../Resources/completion.'.$shell; |
|
92 | + $completionFile = __DIR__ . '/../Resources/completion.' . $shell; |
|
93 | 93 | if (!file_exists($completionFile)) { |
94 | 94 | $supportedShells = $this->getSupportedShells(); |
95 | 95 | |
@@ -117,12 +117,12 @@ discard block |
||
117 | 117 | |
118 | 118 | private function tailDebugLog(string $commandName, OutputInterface $output): void |
119 | 119 | { |
120 | - $debugFile = sys_get_temp_dir().'/sf_'.$commandName.'.log'; |
|
120 | + $debugFile = sys_get_temp_dir() . '/sf_' . $commandName . '.log'; |
|
121 | 121 | if (!file_exists($debugFile)) { |
122 | 122 | touch($debugFile); |
123 | 123 | } |
124 | 124 | $process = new Process(['tail', '-f', $debugFile], null, null, null, 0); |
125 | - $process->run(function (string $type, string $line) use ($output): void { |
|
125 | + $process->run(function(string $type, string $line) use ($output): void { |
|
126 | 126 | $output->write($line); |
127 | 127 | }); |
128 | 128 | } |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | { |
135 | 135 | $shells = []; |
136 | 136 | |
137 | - foreach (new \DirectoryIterator(__DIR__.'/../Resources/') as $file) { |
|
137 | + foreach (new \DirectoryIterator(__DIR__ . '/../Resources/') as $file) { |
|
138 | 138 | if (str_starts_with($file->getBasename(), 'completion.') && $file->isFile()) { |
139 | 139 | $shells[] = $file->getExtension(); |
140 | 140 | } |
@@ -331,7 +331,7 @@ discard block |
||
331 | 331 | if ($code instanceof \Closure) { |
332 | 332 | $r = new \ReflectionFunction($code); |
333 | 333 | if (null === $r->getClosureThis()) { |
334 | - set_error_handler(static function () {}); |
|
334 | + set_error_handler(static function() {}); |
|
335 | 335 | try { |
336 | 336 | if ($c = \Closure::bind($code, $this)) { |
337 | 337 | $code = $c; |
@@ -594,7 +594,7 @@ discard block |
||
594 | 594 | ]; |
595 | 595 | $replacements = [ |
596 | 596 | $name, |
597 | - $isSingleCommand ? $_SERVER['PHP_SELF'] : $_SERVER['PHP_SELF'].' '.$name, |
|
597 | + $isSingleCommand ? $_SERVER['PHP_SELF'] : $_SERVER['PHP_SELF'] . ' ' . $name, |
|
598 | 598 | ]; |
599 | 599 | |
600 | 600 | return str_replace($placeholders, $replacements, $this->getHelp() ?: $this->getDescription()); |
@@ -37,7 +37,7 @@ |
||
37 | 37 | */ |
38 | 38 | protected function failureDescription($other): string |
39 | 39 | { |
40 | - return 'the command '.$this->toString(); |
|
40 | + return 'the command ' . $this->toString(); |
|
41 | 41 | } |
42 | 42 | |
43 | 43 | /** |
@@ -75,7 +75,7 @@ |
||
75 | 75 | unset($_SERVER['SHELL_VERBOSITY']); |
76 | 76 | } else { |
77 | 77 | if (\function_exists('putenv')) { |
78 | - @putenv('SHELL_VERBOSITY='.$prevShellVerbosity); |
|
78 | + @putenv('SHELL_VERBOSITY=' . $prevShellVerbosity); |
|
79 | 79 | } |
80 | 80 | $_ENV['SHELL_VERBOSITY'] = $prevShellVerbosity; |
81 | 81 | $_SERVER['SHELL_VERBOSITY'] = $prevShellVerbosity; |
@@ -187,7 +187,7 @@ |
||
187 | 187 | $stream = fopen('php://memory', 'r+', false); |
188 | 188 | |
189 | 189 | foreach ($inputs as $input) { |
190 | - fwrite($stream, $input.\PHP_EOL); |
|
190 | + fwrite($stream, $input . \PHP_EOL); |
|
191 | 191 | } |
192 | 192 | |
193 | 193 | rewind($stream); |
@@ -48,7 +48,7 @@ |
||
48 | 48 | |
49 | 49 | $options = []; |
50 | 50 | foreach ($suggestions->getOptionSuggestions() as $option) { |
51 | - $options[] = '--'.$option->getName(); |
|
51 | + $options[] = '--' . $option->getName(); |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | return array_map('strval', array_merge($options, $suggestions->getValueSuggestions())); |
@@ -69,7 +69,7 @@ |
||
69 | 69 | return false; |
70 | 70 | } |
71 | 71 | |
72 | - return self::$stty = (bool) shell_exec('stty 2> '.('\\' === \DIRECTORY_SEPARATOR ? 'NUL' : '/dev/null')); |
|
72 | + return self::$stty = (bool) shell_exec('stty 2> ' . ('\\' === \DIRECTORY_SEPARATOR ? 'NUL' : '/dev/null')); |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | private static function initDimensions() |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | |
80 | 80 | if (null === $commandName) { |
81 | 81 | if (!$definition->isPublic() || $definition->isPrivate() || $definition->hasTag($this->privateTagName)) { |
82 | - $commandId = 'console.command.public_alias.'.$id; |
|
82 | + $commandId = 'console.command.public_alias.' . $id; |
|
83 | 83 | $container->setAlias($commandId, $id)->setPublic(true); |
84 | 84 | $id = $commandId; |
85 | 85 | } |
@@ -130,10 +130,10 @@ discard block |
||
130 | 130 | if ($description) { |
131 | 131 | $definition->addMethodCall('setDescription', [$description]); |
132 | 132 | |
133 | - $container->register('.'.$id.'.lazy', LazyCommand::class) |
|
133 | + $container->register('.' . $id . '.lazy', LazyCommand::class) |
|
134 | 134 | ->setArguments([$commandName, $aliases, $description, $isHidden, new ServiceClosureArgument($lazyCommandRefs[$id])]); |
135 | 135 | |
136 | - $lazyCommandRefs[$id] = new Reference('.'.$id.'.lazy'); |
|
136 | + $lazyCommandRefs[$id] = new Reference('.' . $id . '.lazy'); |
|
137 | 137 | } |
138 | 138 | } |
139 | 139 |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | public function listing(array $elements) |
103 | 103 | { |
104 | 104 | $this->autoPrependText(); |
105 | - $elements = array_map(function ($element) { |
|
105 | + $elements = array_map(function($element) { |
|
106 | 106 | return sprintf(' * %s', $element); |
107 | 107 | }, $elements); |
108 | 108 | |
@@ -502,10 +502,10 @@ discard block |
||
502 | 502 | |
503 | 503 | foreach ($lines as $i => &$line) { |
504 | 504 | if (null !== $type) { |
505 | - $line = $firstLineIndex === $i ? $type.$line : $lineIndentation.$line; |
|
505 | + $line = $firstLineIndex === $i ? $type . $line : $lineIndentation . $line; |
|
506 | 506 | } |
507 | 507 | |
508 | - $line = $prefix.$line; |
|
508 | + $line = $prefix . $line; |
|
509 | 509 | $line .= str_repeat(' ', max($this->lineLength - Helper::width(Helper::removeDecoration($this->getFormatter(), $line)), 0)); |
510 | 510 | |
511 | 511 | if ($style) { |