We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d9606c6 + a7ec25e commit 4a7e7feCopy full SHA for 4a7e7fe
CHANGELOG.md
@@ -4,6 +4,11 @@ Changelog
4
3.x
5
===
6
7
+3.0.1
8
+-----
9
+
10
+* Fixed regression in AttributesListener: Ignore other attributes on controller methods.
11
12
3.0.0
13
-----
14
src/EventListener/AttributesListener.php
@@ -38,7 +38,8 @@ public function onKernelRequest(RequestEvent $event): void
38
if ($key = match (get_class($instance)) {
39
InvalidatePath::class => '_invalidate_path',
40
InvalidateRoute::class => '_invalidate_route',
41
- Tag::class => '_tag'
+ Tag::class => '_tag',
42
+ default => false,
43
}) {
44
$attributes[$key][] = $instance;
45
}
0 commit comments