8000 [Validator] added BIC (SWIFT-BIC) validation constraint by mvhirsch · Pull Request #15519 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Validator] added BIC (SWIFT-BIC) validation constraint #15519

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 9 commits into from
Prev Previous commit
Next Next commit
[Validator] fixed coding standards. refs #15519
  • Loading branch information
mvhirsch committed Sep 25, 2015
commit 99bc9f1ad76c95583e7d542a7b1b324f31da8d56
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
class BicValidator extends ConstraintValidator
{
/**
* {@inheritDoc}
* {@inheritdoc}
*/
public function validate($value, Constraint $constraint)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace Symfony\Component\Validator\Tests\Constraints;

use Symfony\Component\Validator\Tests\Constraints\AbstractConstraintValidatorTest;
use Symfony\Component\Validator\Constraints\BicValidator;
use Symfony\Component\Validator\Constraints\Bic;

Expand Down
0