File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -67,6 +67,9 @@ issue):
67
67
* **Adding new deprecations **: After a version reaches stability, new
68
68
deprecations cannot be added anymore.
69
69
70
+ * **Adding or updating annotations **: Adding or updating annotations (PHPDoc
71
+ annotations for instance) is not allowed; fixing them might be accepted.
72
+
70
73
Anything not explicitly listed above should be done on the next minor or major
71
74
version instead. For instance, the following changes are never accepted in a
72
75
patch version:
Original file line number Diff line number Diff line change @@ -383,7 +383,7 @@ logic you want::
383
383
class SwitchToCustomerVoter extends Voter
384
384
{
385
385
public function __construct(
386
- private AccessDecisionManager $accessDecisionManager,
386
+ private AccessDecisionManagerInterface $accessDecisionManager,
387
387
) {
388
388
}
389
389
You can’t perform that action at this time.
0 commit comments