Skip to content

Commit

Permalink
Fix VatNumberValidatorTest
Browse files Browse the repository at this point in the history
  • Loading branch information
Benoit Condaminet committed May 24, 2024
1 parent 89f1e35 commit 31892ac
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 31892ac

Please sign in to comment.