File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed
src/Symfony/Component/Validator Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -357,6 +357,11 @@ TwigBridge
357
357
358
358
* Remove ` text ` format from the ` debug:twig ` command, use the ` txt ` format instead
359
359
360
+ Validator
361
+ ---------
362
+
363
+ * Remove ` Bic::INVALID_BANK_CODE_ERROR ` constant. This error code was not used in the Bic constraint validator anymore.
364
+
360
365
VarExporter
361
366
-----------
362
367
Original file line number Diff line number Diff line change 1
1
CHANGELOG
2
2
=========
3
3
4
+ 8.0
5
+ ---
6
+
7
+ * Remove ` Bic::INVALID_BANK_CODE_ERROR ` constant. This error code was not used in the Bic constraint validator anymore.
8
+
4
9
7.3
5
10
---
6
11
Original file line number Diff line number Diff line change @@ -39,18 +39,13 @@ class Bic extends Constraint
39
39
40
40
public const INVALID_LENGTH_ERROR = '66dad313-af0b-4214-8566-6c799be9789c ' ;
41
41
public const INVALID_CHARACTERS_ERROR = 'f424c529-7add-4417-8f2d-4b656e4833e2 ' ;
42
- /**
43
- * @deprecated since Symfony 7.1, to be removed in 8.0
44
- */
45
- public const INVALID_BANK_CODE_ERROR = '00559357-6170-4f29-aebd-d19330aa19cf ' ;
46
42
public const INVALID_COUNTRY_CODE_ERROR = '1ce76f8d-3c1f-451c-9e62-fe9c3ed486ae ' ;
47
43
public const INVALID_CASE_ERROR = '11884038-3312-4ae5-9d04-699f782130c7 ' ;
48
44
public const INVALID_IBAN_COUNTRY_CODE_ERROR = '29a2c3bb-587b-4996-b6f5-53081364cea5 ' ;
49
45
50
46
protected const ERROR_NAMES = [
51
47
self ::INVALID_LENGTH_ERROR => 'INVALID_LENGTH_ERROR ' ,
52
48
self ::INVALID_CHARACTERS_ERROR => 'INVALID_CHARACTERS_ERROR ' ,
53
- self ::INVALID_BANK_CODE_ERROR => 'INVALID_BANK_CODE_ERROR ' ,
54
49
self ::INVALID_COUNTRY_CODE_ERROR => 'INVALID_COUNTRY_CODE_ERROR ' ,
55
50
self ::INVALID_CASE_ERROR => 'INVALID_CASE_ERROR ' ,
56
51
];
You can’t perform that action at this time.
0 commit comments