Skip to content

Commit

Permalink
Fixing formatting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
willitscale committed Jan 28, 2024
1 parent 5d23af7 commit 07807c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Attributes/Validators/FloatValidatorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class FloatValidatorTest extends TestCase
*/
public function testThatValidateCorrectlyValidatesTheInput(
string $input,
bool $expectedResult,
bool $expectedResult,
?float $min = 0,
?float $max = PHP_FLOAT_MAX
): void {
Expand All @@ -36,7 +36,7 @@ public function testThatValidateCorrectlyValidatesTheInput(
*/
public function testThatSanitizeCorrectlySanitizesTheInput(
string $input,
float $expectedResult
float $expectedResult
): void {
$regExpValidator = new FloatValidator();
$response = $regExpValidator->sanitize($input);
Expand Down

0 comments on commit 07807c9

Please sign in to comment.