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

Commit cdcfe06

Browse files
committed
chore: improved comment
1 parent 532b38e commit cdcfe06

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Rule/NotBlank.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function validate(mixed $input): void
2121
$input = trim($input);
2222
}
2323

24-
// Does not allow null, false, [] and ''
24+
// Do not allow null, false, [] and ''
2525
if ($input === false || (empty($input) && $input != '0')) {
2626
throw new NotBlankException(
2727
message: $this->message,

0 commit comments

Comments
 (0)