Commander
Commander copied to clipboard
Easily leverage commands and domain events in your Laravel projects.
Hi! I've noticed a strange bug when trying to use `ValidationCommandBus`. It appears that when executing command with this bus this decorator is firing validator then using the default command...
Using "laracasts/commander": "~1.0" with Laravel 4.2 I get the following warning when doing composer update. Any clues? ``` Warning: Ambiguous class resolution, "Illuminate\Foundation\Application" was found in both "/var/www/adsf/htdocs/vendor/laravel/framework/src/Illuminate/Foundation/Application.php" and "/var/www/asdf/htdocs/vendor/laracasts/commander/spec/Laracasts/Commander/ValidationCommandBusSpec.php",...
In case of naming fields in HTML, we use a snake case, but in php we prefer camel case. It would be nice if Commander will try to do it...
I prefer to use this command bus, as it returns values from a command in the opposite of the new laravel 5 command bus that doesn't return value.
I recently hit a snag with using the CommanderTrait with a class inheriting from Illuminate/Console/Command. Because CommandTrait declares its own execute() method, there is a signature conflict with the method...
Maybe I'm just too used to `generate:migration` but it would be nice to be able to do this: ``` $ php artisan commander:generate Acme/Bar/SubscribeUserCommand --properties="first:string, last:Some\Class" ``` And have the...
I have CommandA with ONE decorator class. I have CommandB with NO decorator classes. In CommandA handler, I execute CommandB. By right, when I execute CommandA, these steps should happen:...
Hey Jeffrey! I am trying to do method injection in a CommandHandler class like so: public function handle($command, \UserRepository $userRepository) Still, I'm getting the following error: Declaration of Site\Registration\RegisterUserCommandHandler::handle() must...
I don't think this is currently an option from what I can see, but is there any way to override the default `command.stub` or `handler.stub` that the package uses when...