Skip to content

Commit 50c8c3f

Browse files
committed
fixed CS
1 parent 5e82705 commit 50c8c3f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Constraints/IbanValidator.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ public function validate($value, Constraint $constraint)
5656

5757
if ($rest != 1) {
5858
$this->context->addViolation($constraint->message, array('{{ value }}' => $value));
59+
5960
return;
6061
}
6162
}

Tests/Constraints/IsbnValidatorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ public function testInvalidIsbn10($isbn)
163163
->expects($this->once())
164164
->method('addViolation')
165165
->with($constraint->isbn10Message);
166-
166+
167167
$this->validator->validate($isbn, $constraint);
168168
}
169169

0 commit comments

Comments
 (0)