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
I tried installing the module on the recent version of laravel but unfortunately I got an error when I tried to publish it. I checked the issue and it is on line 43 of the file /laravelhungary/announcement/src/Package/PackageServiceProvider.php. I research for it and the share() method is no longer supported on the recent version of laravel. As a solution, singletion() is being used now.
so I changed the code starting line 43 of the class to
$this->app->singleton('announce', function () {
return new Announce();
});
and this solves the issue.
Thanks.
The text was updated successfully, but these errors were encountered:
Hello,
I tried installing the module on the recent version of laravel but unfortunately I got an error when I tried to publish it. I checked the issue and it is on line 43 of the file /laravelhungary/announcement/src/Package/PackageServiceProvider.php. I research for it and the share() method is no longer supported on the recent version of laravel. As a solution, singletion() is being used now.
so I changed the code starting line 43 of the class to
$this->app->singleton('announce', function () {
return new Announce();
});
and this solves the issue.
Thanks.
The text was updated successfully, but these errors were encountered: