Hesto/multi-auth

on composer update for laravel 5.3

Opened this issue · 1 comments

Class Hesto\MultiAuth\Commands\MultiAuthInstallCommand contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (Hesto\Core\Commands\InstallCommand::handle)

I found a temporary solution. Open

/vendor/hesto/core/src/Commands/MultiAuthInstallCommand.php

and add a function with curly braces.

public function handle() { }

This is just basic function overriding of an abstract function as it is defined as abstract in parent class and not implemented in concrete class and its parent classes.

Hope it helps!