Event::dispatch error when event extension enabled in php7.3-fpm
adeiming opened this issue · 1 comments
adeiming commented
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.
patrickcurl commented
@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.