Skip to content

Commit be26fd1

Browse files
committed
minor #16697 CS: remove impossible default argument value (keradus)
This PR was merged into the 2.7 branch. Discussion ---------- CS: remove impossible default argument value | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | ? | Fixed tickets | N/A | License | MIT | Doc PR | N/A Commits ------- acef3a3 CS: remove impossible default argument value
2 parents b96c9db + 6e6a68e commit be26fd1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Extension/DataCollector/FormDataCollector.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ public function getData()
217217
return $this->data;
218218
}
219219

220-
private function recursiveBuildPreliminaryFormTree(FormInterface $form, &$output = null, array &$outputByHash)
220+
private function recursiveBuildPreliminaryFormTree(FormInterface $form, &$output, array &$outputByHash)
221221
{
222222
$hash = spl_object_hash($form);
223223

@@ -236,7 +236,7 @@ private function recursiveBuildPreliminaryFormTree(FormInterface $form, &$output
236236
}
237237
}
238238

239-
private function recursiveBuildFinalFormTree(FormInterface $form = null, FormView $view, &$output = null, array &$outputByHash)
239+
private function recursiveBuildFinalFormTree(FormInterface $form = null, FormView $view, &$output, array &$outputByHash)
240240
{
241241
$viewHash = spl_object_hash($view);
242242
$formHash = null;

0 commit comments

Comments
 (0)