bug #33513 [Console] Use correct EventDispatcherInterface (derrabus)

This PR was merged into the 5.0-dev branch.

Discussion
----------

[Console] Use correct EventDispatcherInterface

| Q             | A
| ------------- | ---
| Branch?       | master
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | N/A
| License       | MIT
| Doc PR        | N/A

The parameter type declaration of `Symfony\Component\Console\Application::setDispatcher()` was announced to be changed to the contracts' `EventDispatcherInterface`, but in fact we're still referencing the component's interface there.

Commits
-------

5ccb472623 [Console] Use correct EventDispatcherInterface.
This commit is contained in:
Fabien Potencier 2019-09-10 12:11:04 +02:00
commit c0f0b8a1b5
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle;
use Symfony\Component\ErrorHandler\ErrorHandler;
use Symfony\Component\ErrorHandler\Exception\FatalThrowableError;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
use Symfony\Contracts\Service\ResetInterface;
/**