Skip to content

Commit 6e6a68e

Browse files
committed
CS: remove impossible default argument value
1 parent 1ab13ae commit 6e6a68e

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)