Skip to content

Commit daab3b5

Browse files
authored
Merge pull request #81 from DenislavParvanov/master
fix alpha_spaces check
2 parents bb2528d + dbf6fc3 commit daab3b5

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)