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
In the step "php artisan vendor:publish" the aplication create this exception:
[Symfony\Component\Debug\Exception\FatalErrorException]
Class XmlResponse\XmlResponseServiceProvider contains 1 abstract method and must therefore be decla
red abstract or implement the remaining methods (Illuminate\Support\ServiceProvider::register)
This is for in the method XmlResponseServiceProvider this extends for ServiceProvider and need to add
public function register()
{
//
}
at the end of this file. This fix this error. pleas eupdate the proyect and include this fix.
The text was updated successfully, but these errors were encountered:
In the step "php artisan vendor:publish" the aplication create this exception:
[Symfony\Component\Debug\Exception\FatalErrorException]
Class XmlResponse\XmlResponseServiceProvider contains 1 abstract method and must therefore be decla
red abstract or implement the remaining methods (Illuminate\Support\ServiceProvider::register)
This is for in the method XmlResponseServiceProvider this extends for ServiceProvider and need to add
public function register()
{
//
}
at the end of this file. This fix this error. pleas eupdate the proyect and include this fix.
The text was updated successfully, but these errors were encountered: