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
There are two or more events. There is a listener that listens to both events (using union types).
Expected: The "find listeners" helper (the little yellow lightning bolt to the left of the event class definition) should show the listener when clicked.
Actual: The "find listeners" helper does not show the listener.
Plugin version
9.1.0.243
Operating system
MacOS
Steps to reproduce
No response
Relevant log output
No response
The text was updated successfully, but these errors were encountered:
This happened to me too, I attached a code example. With the listener the second type (or anything other than the first if you have multiple) clicking on the not first event Listener Helper Button will not show all the listeners
Example Created Event
<?phpnamespaceApp\Events;
useApp\Models\User;
useIlluminate\Foundation\Events\Dispatchable;
class UserCreated
{
use Dispatchable;
publicfunction__construct(
publicreadonlyUser$user
) {}
}
Example Updated Event
<?phpnamespaceApp\Events;
useApp\Models\User;
useIlluminate\Foundation\Events\Dispatchable;
class UserUpdated
{
use Dispatchable;
publicfunction__construct(
publicreadonlyUser$user
) {}
}
Bug description
Expected: The "find listeners" helper (the little yellow lightning bolt to the left of the event class definition) should show the listener when clicked.
Actual: The "find listeners" helper does not show the listener.
Plugin version
9.1.0.243
Operating system
MacOS
Steps to reproduce
No response
Relevant log output
No response
The text was updated successfully, but these errors were encountered: