Skip to content

Commit ecde056

Browse files
php-cs-fixer round
1 parent e2e28a6 commit ecde056

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/Bridge/Interaction/CollectionInteractor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ private function printHeader(FormInterface $form, OutputInterface $output)
111111
strtr(
112112
'<fieldset>{label}</fieldset>',
113113
[
114-
'{label}' => FormUtil::label($form)
114+
'{label}' => FormUtil::label($form),
115115
]
116116
)
117117
);

src/Bridge/Interaction/NonInteractiveRootInteractor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function interactWith(
5050
if ($config->getType()->getInnerType() instanceof RepeatedType && $input->hasOption($name)) {
5151
$input->setOption($name, [
5252
$config->getOption('first_name') => $input->getOption($name),
53-
$config->getOption('second_name') => $input->getOption($name)
53+
$config->getOption('second_name') => $input->getOption($name),
5454
]);
5555
}
5656
}

src/Console/Command/DynamicFormBasedCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ public function formType()
3232
*/
3333
protected function configure()
3434
{
35-
$this->setName('form:' . $this->formType);
35+
$this->setName('form:'.$this->formType);
3636
}
3737
}

src/Console/Formatter/Format.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public static function forQuestion($question, $defaultValue)
2424
'<question>{question}</question>{default}: ',
2525
[
2626
'{question}' => $question,
27-
'{default}' => $default
27+
'{default}' => $default,
2828
]
2929
);
3030
}

src/Console/Helper/Question/AlwaysReturnKeyOfChoiceQuestion.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ private function prepareChoices()
118118
foreach ($this->choiceViews as $choiceView) {
119119
$label = $choiceView->label;
120120
if ($choiceView->data != $choiceView->value) {
121-
$label .= ' (<comment>' . $choiceView->data . '</comment>)';
121+
$label .= ' (<comment>'.$choiceView->data.'</comment>)';
122122
}
123123

124124
$choices[$choiceView->value] = $label;

src/Form/EventListener/UseInputOptionsAsEventDataEventSubscriber.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class UseInputOptionsAsEventDataEventSubscriber implements EventSubscriberInterf
1616
public static function getSubscribedEvents()
1717
{
1818
return [
19-
FormEvents::PRE_SUBMIT => 'onPreSubmit'
19+
FormEvents::PRE_SUBMIT => 'onPreSubmit',
2020
];
2121
}
2222

0 commit comments

Comments
 (0)