Skip to content

Commit

Permalink
Merge pull request #15 from benconda/fix-tests
Browse files Browse the repository at this point in the history
Fix VatNumberValidatorTest
  • Loading branch information
dannyvankooten authored May 24, 2024
2 parents 89f1e35 + 31892ac commit 35fb873
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/Validator/Constraints/VatNumberValidatorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@

use Ibericode\Vat\Bundle\Validator\Constraints\VatNumber;
use Ibericode\Vat\Bundle\Validator\Constraints\VatNumberValidator;
use Symfony\Component\Validator\ConstraintValidatorInterface;
use Symfony\Component\Validator\Test\ConstraintValidatorTestCase;

class VatNumberValidatorTest extends ConstraintValidatorTestCase
{

protected function createValidator()
protected function createValidator(): ConstraintValidatorInterface
{
return new VatNumberValidator();
}
Expand Down

0 comments on commit 35fb873

Please sign in to comment.