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
Namespace fix, causing errors in laravel with php 7.4.
E.G: Call to undefined method Event::dispatch(), explicitly namespacing the classes and removing backslash, fixes the bug.
See: VentureCraft#376
@adeiming Namespacing the classes referenced fixed this for me.
see: #386
You could just copy that to App\Traits\RevisionableTrait and reference that instead of the one in vendors, and it should work until the PR is instituted.
I believe php 7.3 has it's own Event class so \Event is referencing that not Illuminate\Support\Facades\Event, for good measure I just namespaced Revisionable, DB, and Event classes.
this problem occurs when i enable event extension in php 7.3-fpm.
the error that appears is:
Call to undefined method Event::dispatch()
Please help.
The text was updated successfully, but these errors were encountered: