Skip to content

Commit f463ca7

Browse files
committed
[Validator] BIC remove unused sprintf and parameter
1 parent df50d2a commit f463ca7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)