cs: Second part - ignore test/app subdirectory.

This commit is contained in:
Pol Dellaiera
2021-11-23 14:34:34 +01:00
parent 5f37304796
commit 3ea35682eb
72 changed files with 326 additions and 365 deletions

View File

@@ -616,12 +616,12 @@ final class ImportPeopleFromCSVCommand extends Command
$helper = $this->getHelper('question');
$question = new ChoiceQuestion(
sprintf(
'Which postal code match the '
'Which postal code match the '
. 'name "%s" with postal code "%s" ? (default to "%s")',
$locality,
$postalCode,
$names[0]
),
$locality,
$postalCode,
$names[0]
),
$names,
0
);
@@ -908,11 +908,11 @@ final class ImportPeopleFromCSVCommand extends Command
$this->output->writeln(
sprintf(
'You have selected "%s"',
is_array($answers[$matchingTableRowAnswer[$selected]]) ?
'You have selected "%s"',
is_array($answers[$matchingTableRowAnswer[$selected]]) ?
implode(',', $answers[$matchingTableRowAnswer[$selected]]) :
$answers[$matchingTableRowAnswer[$selected]]
)
)
);
// recording value in cache
@@ -933,10 +933,10 @@ final class ImportPeopleFromCSVCommand extends Command
$this->logger->debug(
sprintf(
"Found value : %s for custom field with question '%s'",
is_array($value) ? implode(',', $value) : $value,
$this->helper->localize($cf->getName())
)
"Found value : %s for custom field with question '%s'",
is_array($value) ? implode(',', $value) : $value,
$this->helper->localize($cf->getName())
)
);
return $value;