Skip to content

Commit 5b17e63

Browse files
committed
Mark null parameter as nullable
1 parent 81cc3a5 commit 5b17e63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Event/FormHandlerEvent.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class FormHandlerEvent extends Event
4040
*/
4141
private $formRequest;
4242

43-
public function __construct(FormHandlerInterface $handler = null, FormInterface $form = null, FormRequest $formRequest = null)
43+
public function __construct(?FormHandlerInterface $handler = null, ?FormInterface $form = null, ?FormRequest $formRequest = null)
4444
{
4545
$this->handler = $handler;
4646
$this->form = $form;

0 commit comments

Comments
 (0)