Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a944f29

Browse files
committed
bug #33093 [EventDispatcher] wrong Request class (maxhelias)
This PR was merged into the 4.3 branch. Discussion ---------- [EventDispatcher] wrong Request class | Q | A | ------------- | --- | Branch? | 4.3 <!-- see below --> | Bug fix? | yes | New feature? |no <!-- please update src/**/CHANGELOG.md files --> | BC breaks? | no <!-- see https://symfony.com/bc --> | Deprecations? |no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files --> | Tests pass? | yes <!-- please add some, will be required by reviewers --> | Fixed tickets | - <!-- #-prefixed issue number(s), if any --> | License | MIT | Doc PR | - <!-- required for new features --> <!-- Replace this notice by a short README for your feature/bugfix. This will help people understand your PR and can be used as a start for the documentation. Additionally (see https://symfony.com/roadmap): - Bug fixes must be submitted against the lowest maintained branch where they apply (lowest branches are regularly merged to upper ones so they get the fixes too). - Features and deprecations must be submitted against branch 4.4. - Legacy code removals go to the master branch. --> Commits ------- 97d6184 [EventDispatcher] wrong Request class
2 parents 2f2d1aa + 97d6184 commit a944f29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/EventDispatcher/Debug/TraceableEventDispatcher.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313

1414
use Psr\EventDispatcher\StoppableEventInterface;
1515
use Psr\Log\LoggerInterface;
16-
use Symfony\Component\BrowserKit\Request;
1716
use Symfony\Component\EventDispatcher\Event;
1817
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
1918
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
2019
use Symfony\Component\EventDispatcher\LegacyEventDispatcherProxy;
2120
use Symfony\Component\EventDispatcher\LegacyEventProxy;
21+
use Symfony\Component\HttpFoundation\Request;
2222
use Symfony\Component\HttpFoundation\RequestStack;
2323
use Symfony\Component\Stopwatch\Stopwatch;
2424
use Symfony\Contracts\EventDispatcher\Event as ContractsEvent;

0 commit comments

Comments
 (0)