Skip to content

Commit abe6d6f

Browse files
Apply php-cs-fixer fix --rules nullable_type_declaration_for_default_null_value
1 parent ff4bce3 commit abe6d6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Comparator/Comparator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class Comparator
1919
private $target;
2020
private $operator = '==';
2121

22-
public function __construct(string $target = null, string $operator = '==')
22+
public function __construct(?string $target = null, string $operator = '==')
2323
{
2424
if (null === $target) {
2525
trigger_deprecation('symfony/finder', '5.4', 'Constructing a "%s" without setting "$target" is deprecated.', __CLASS__);

0 commit comments

Comments
 (0)