File tree Expand file tree Collapse file tree 2 files changed +0
-14
lines changed Expand file tree Collapse file tree 2 files changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -53,10 +53,3 @@ public function onTerminate(TerminateEvent $event): void
53
53
}
54
54
}
55
55
}
56
-
57
- // PostResponseEvent have been renamed into ResponseEvent in sf 4.3
58
- // @see https://github.com/symfony/symfony/blob/master/UPGRADE-4.3.md#httpkernel
59
- // To be removed once sf ^4.3 become the minimum supported version.
60
- if (!class_exists (TerminateEvent::class) && class_exists (PostResponseEvent::class)) {
61
- class_alias (PostResponseEvent::class, TerminateEvent::class);
62
- }
Original file line number Diff line number Diff line change @@ -128,10 +128,3 @@ public function onKernelResponse(ResponseEvent $event): void
128
128
$ event ->getResponse ()->setContent ($ content );
129
129
}
130
130
}
131
-
132
- // FilterResponseEvent have been renamed into ResponseEvent in sf 4.3
133
- // @see https://github.com/symfony/symfony/blob/master/UPGRADE-4.3.md#httpkernel
134
- // To be removed once sf ^4.3 become the minimum supported version.
135
- if (!class_exists (ResponseEvent::class) && class_exists (FilterResponseEvent::class)) {
136
- class_alias (FilterResponseEvent::class, ResponseEvent::class);
137
- }
You can’t perform that action at this time.
0 commit comments