Skip to content

Commit dbf6fc3

Browse files
fix alpha_spaces check
1 parent bb2528d commit dbf6fc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Rules/AlphaSpaces.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class AlphaSpaces extends Rule
1818
*/
1919
public function check($value): bool
2020
{
21-
if (! is_string($value) && ! is_numeric($value)) {
21+
if (! is_string($value)) {
2222
return false;
2323
}
2424

0 commit comments

Comments
 (0)