Skip to content

Commit b429d36

Browse files
committed
Merge branch '2.4'
* 2.4: fixed CS fixed a typo fixed CS for lambdas [Yaml] fixed some license headers Fixes message value for objects Check for hour, minute & second validity avoid tables to have apparently long blank line breaks and be too far appart for long nested array params fixed various typos [Filesystem] Fixed mirror for symlinks [Validator] Removed duplicated test for IBAN in data provider
2 parents eded85f + f2f5051 commit b429d36

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

Application.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1038,7 +1038,8 @@ public function extractNamespace($name, $limit = null)
10381038
}
10391039

10401040
/**
1041-
* Finds alternative of $name among $collection
1041+
* Finds alternative of $name among $collection,
1042+
* if nothing is found in $collection, try in $abbrevs
10421043
*
10431044
* @param string $name The string
10441045
* @param array|Traversable $collection The collection

Helper/DialogHelper.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ public function askAndValidate(OutputInterface $output, $question, $validator, $
337337
{
338338
$that = $this;
339339

340-
$interviewer = function() use ($output, $question, $default, $autocomplete, $that) {
340+
$interviewer = function () use ($output, $question, $default, $autocomplete, $that) {
341341
return $that->ask($output, $question, $default, $autocomplete);
342342
};
343343

@@ -367,7 +367,7 @@ public function askHiddenResponseAndValidate(OutputInterface $output, $question,
367367
{
368368
$that = $this;
369369

370-
$interviewer = function() use ($output, $question, $fallback, $that) {
370+
$interviewer = function () use ($output, $question, $fallback, $that) {
371371
return $that->askHiddenResponse($output, $question, $fallback);
372372
};
373373

@@ -405,7 +405,7 @@ public function getName()
405405
}
406406

407407
/**
408-
* Return a valid unix shell
408+
* Return a valid Unix shell
409409
*
410410
* @return string|Boolean The valid shell name, false in case no valid shell is found
411411
*/

Output/StreamOutput.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ protected function doWrite($message, $newline)
8989
*
9090
* Colorization is disabled if not supported by the stream:
9191
*
92-
* - windows without ansicon and ConEmu
92+
* - Windows without Ansicon and ConEmu
9393
* - non tty consoles
9494
*
9595
* @return Boolean true if the stream supports colorization, false otherwise

Shell.php

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

106106
$output = $this->output;
107-
$process->run(function($type, $data) use ($output) {
107+
$process->run(function ($type, $data) use ($output) {
108108
$output->writeln($data);
109109
});
110110

0 commit comments

Comments
 (0)