Open okello23 opened 5 years ago
This error is thrown when someone tries to run php artisan entrust:migration command.
php artisan entrust:migration
Method Zizaco\Entrust\MigrationCommand::handle() does not exist
Way around it has been to edit vendor/zizaco/entrust/src/commands/MigrationCommand.php and change public function fire() to public function handle()
vendor/zizaco/entrust/src/commands/MigrationCommand.php
public function fire()
public function handle()
This error is thrown when someone tries to run
php artisan entrust:migration
command.Method Zizaco\Entrust\MigrationCommand::handle() does not exist
Way around it has been to edit
vendor/zizaco/entrust/src/commands/MigrationCommand.php
and changepublic function fire()
topublic function handle()