You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 12, 2025. It is now read-only.
- use Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcherInterface;+ use Symfony\Contracts\EventDispatcher\EventDispatcherInterface as ContractsEventDispatcherInterface;
//...
- if (!interface_exists(TraceableEventDispatcherInterface::class)) {+ if ($dispatcher instanceof ContractsEventDispatcherInterface) {
$dispatcher->dispatch($eventObject, $eventType);
} else {
$dispatcher->dispatch($eventType, $eventObject);
}
See failed job in Codeception/module-laravel#12 . Caused by:
phpunit-wrapper/src/DispatcherWrapper.php
Lines 20 to 26 in f5d311f
Suggested change (based on https://github.com/lexik/LexikJWTAuthenticationBundle/pull/669/files):
Related to: Codeception/Codeception#6065