Skip to content

Commit b77925b

Browse files
Fix styling
1 parent 69c1104 commit b77925b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Rules/ValidEvenNumber.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class ValidEvenNumber implements Rule
1111
*/
1212
public function passes($attribute, $value): bool
1313
{
14-
if (!is_numeric($value)) {
14+
if (! is_numeric($value)) {
1515
return false;
1616
}
1717

0 commit comments

Comments
 (0)