Skip to content

Commit 035e072

Browse files
committed
fixed CS for lambdas
1 parent 3945ca8 commit 035e072

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1063,7 +1063,7 @@ public function extractNamespace($name, $limit = null)
10631063
*/
10641064
private function findAlternativeCommands($name, $abbrevs)
10651065
{
1066-
$callback = function($item) {
1066+
$callback = function ($item) {
10671067
return $item->getName();
10681068
};
10691069

Helper/DialogHelper.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ public function askAndValidate(OutputInterface $output, $question, $validator, $
333333
{
334334
$that = $this;
335335

336-
$interviewer = function() use ($output, $question, $default, $autocomplete, $that) {
336+
$interviewer = function () use ($output, $question, $default, $autocomplete, $that) {
337337
return $that->ask($output, $question, $default, $autocomplete);
338338
};
339339

@@ -363,7 +363,7 @@ public function askHiddenResponseAndValidate(OutputInterface $output, $question,
363363
{
364364
$that = $this;
365365

366-
$interviewer = function() use ($output, $question, $fallback, $that) {
366+
$interviewer = function () use ($output, $question, $fallback, $that) {
367367
return $that->askHiddenResponse($output, $question, $fallback);
368368
};
369369

Shell.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public function run()
105105
;
106106

107107
$output = $this->output;
108-
$process->run(function($type, $data) use ($output) {
108+
$process->run(function ($type, $data) use ($output) {
109109
$output->writeln($data);
110110
});
111111

0 commit comments

Comments
 (0)