We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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()
The text was updated successfully, but these errors were encountered: