8000 [Validator] BIC remove unused sprintf and parameter · symfony/symfony@131e495 · GitHub
[go: up one dir, main page]

Skip to content

Commit 131e495

Browse files
committed
[Validator] BIC remove unused sprintf and parameter
1 parent 0034a0f commit 131e495

File tree

1 file changed

+1
-1
lines changed
  • src/Symfony/Component/Validator/Constraints

1 file changed

+1
-1
lines changed

src/Symfony/Component/Validator/Constraints/Bic.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public function __construct($options = null)
5353
}
5454

5555
if (isset($options['iban']) && isset($options['ibanPropertyPath'])) {
56-
throw new ConstraintDefinitionException(sprintf('The "iban" and "ibanPropertyPath" options of the Iban constraint cannot be used at the same time.', self::class));
56+
throw new ConstraintDefinitionException('The "iban" and "ibanPropertyPath" options of the Iban constraint cannot be used at the same time.');
5757
}
5858

5959
if (isset($options['ibanPropertyPath']) && !class_exists(PropertyAccess::class)) {

0 commit comments

Comments
 (0)
0