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
I have created a so called decorator and passed it to the execute method like so
$this->execute( ImportPlayerCommand::class, $input, [ 'ImportPlayerPositionConverter' ] );
the decorator isn't doing anything yet
use Laracasts\Commander\CommandBus; class ImportPlayerPositionConverter implements CommandBus { public function execute( $command ) { die('dddddd'); } }
the error thrown is: Call to undefined method Laracasts\Commander\ValidationCommandBus::decorate()
regards, Ronnie
The text was updated successfully, but these errors were encountered:
Can you composer update to at least 1.3.8 of this package and try again? Thx! That should fix it.
Sorry, something went wrong.
After updating is get this error. Code is still the same as above, class is inthe same namespace as the command and handler classes
Class ImportPlayerPositionConverter does not exist
edit: Nevermind, forgot to put the full namespace
No branches or pull requests
I have created a so called decorator and passed it to the execute method like so
the decorator isn't doing anything yet
the error thrown is: Call to undefined method Laracasts\Commander\ValidationCommandBus::decorate()
regards,
Ronnie
The text was updated successfully, but these errors were encountered: