@@ -72,7 +72,7 @@ backward compatibility promise:
72
72
+-----------------------------------------------+-----------------------------+
73
73
| Type hint against the interface | Yes |
74
74
+-----------------------------------------------+-----------------------------+
75
- | Call a method | Yes |
75
+ | Call a method | Yes [ 10 ]_ |
76
76
+-----------------------------------------------+-----------------------------+
77
77
| **If you implement the interface and... ** | **Then we guarantee BC... ** |
78
78
+-----------------------------------------------+-----------------------------+
@@ -114,13 +114,13 @@ covered by our backward compatibility promise:
114
114
+-----------------------------------------------+-----------------------------+
115
115
| Access a public property | Yes |
116
116
+-----------------------------------------------+-----------------------------+
117
- | Call a public method | Yes |
117
+ | Call a public method | Yes [ 10 ]_ |
118
118
+-----------------------------------------------+-----------------------------+
119
119
| **If you extend the class and... ** | **Then we guarantee BC... ** |
120
120
+-----------------------------------------------+-----------------------------+
121
121
| Access a protected property | Yes |
122
122
+-----------------------------------------------+-----------------------------+
123
- | Call a protected method | Yes |
123
+ | Call a protected method | Yes [ 10 ]_ |
124
124
+-----------------------------------------------+-----------------------------+
125
125
| Override a public property | Yes |
126
126
+-----------------------------------------------+-----------------------------+
@@ -445,4 +445,8 @@ Turn static into non static No
445
445
446
446
.. [9 ] Allowed for the ``void `` return type.
447
447
448
+ .. [10 ] Parameter names are not part of the compatibility promise. Using
449
+ PHP 8's named arguments feature might break your code when upgrading to
450
+ newer Symfony versions.
451
+
448
452
.. _`Semantic Versioning` : https://semver.org/
0 commit comments