Skip to content

Commit

Permalink
Fix implicitly-required parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Jan 23, 2024
1 parent d069fbf commit c827d42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Extension/DataCollector/FormDataCollector.php
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ private function &recursiveBuildPreliminaryFormTree(FormInterface $form, array &
return $output;
}

private function &recursiveBuildFinalFormTree(?FormInterface $form = null, FormView $view, array &$outputByHash)
private function &recursiveBuildFinalFormTree(?FormInterface $form, FormView $view, array &$outputByHash)
{
$viewHash = spl_object_hash($view);
$formHash = null;
Expand Down

0 comments on commit c827d42

Please sign in to comment.