Skip to content

Commit 2280091

Browse files
bertramakersgithub-actions[bot]
authored andcommitted
Run Prettier
1 parent a057b3d commit 2280091

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/Schema/Type/Number.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,11 @@ public function validate(mixed $value, callable $fail): void
5050
}
5151
}
5252

53-
if ($this->multipleOf !== null && (float) $value !== 0.0 && $value % $this->multipleOf !== 0) {
53+
if (
54+
$this->multipleOf !== null &&
55+
(float) $value !== 0.0 &&
56+
$value % $this->multipleOf !== 0
57+
) {
5458
$fail(sprintf('must be a multiple of %d', $this->multipleOf));
5559
}
5660
}

0 commit comments

Comments
 (0)