8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7780cd2 commit e2dea14Copy full SHA for e2dea14
src/Illuminate/Foundation/Console/EventListCommand.php
@@ -4,7 +4,6 @@
4
5
use Closure;
6
use Illuminate\Console\Command;
7
-use Illuminate\Foundation\Support\Providers\EventServiceProvider;
8
use Illuminate\Support\Str;
9
use ReflectionFunction;
10
@@ -58,12 +57,6 @@ protected function getEvents()
58
57
{
59
$events = [];
60
61
- foreach ($this->laravel->getProviders(EventServiceProvider::class) as $provider) {
62
- $providerEvents = array_merge_recursive($provider->shouldDiscoverEvents() ? $provider->discoverEvents() : [], $provider->listens());
63
-
64
- $events = array_merge_recursive($events, $providerEvents);
65
- }
66
67
$events = $this->addListenersOnDispatcher($events);
68
69
if ($this->filteringByEvent()) {
0 commit comments