Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 11c3add

Browse files
committed
chore: removed unnecessary null type hints
1 parent 10933d0 commit 11c3add

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Rule/NotBlank.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
class NotBlank extends AbstractRule implements RuleInterface
88
{
99
// Using array to bypass unallowed callable type in properties
10-
private ?array $normalizer = null;
10+
private array $normalizer;
1111

12-
private ?string $message;
12+
private string $message;
1313

1414
public function __construct(
1515
?callable $normalizer = null,

0 commit comments

Comments
 (0)