LaravelPackages.net
Acme Inc.
Toggle sidebar
desmart/laravel-commandbus

DeSmart CommandBus for Laravel

3.395
0
1.1.1
About desmart/laravel-commandbus

desmart/laravel-commandbus is a Laravel package for desmart commandbus for laravel. It currently has 0 GitHub stars and 3.395 downloads on Packagist (latest version 1.1.1). Install it with composer require desmart/laravel-commandbus. Discover more Laravel packages by desmart or browse all Laravel packages to compare alternatives.

Last updated

Laravel CommandBus

A small, pluggable command bus.

Instalation

  1. $ composer require desmart/laravel-commandbus
  2. Add DeSmart\CommandBus\ServiceProvider to app.php

Example usage:

Command Class

class RegisterUserCommand
{
    protected $email;

    public function __construct($email)
    {
        $this->email = $email;
    }

    public function getEmail()
    {
        return $this->email;
    }
}

CommandValidator Class

class RegisterUserCommandValidator
{
    public function validate(RegisterUserCommand $command)
    {
        // it will be called before handler
    }
}

CommandHandler Class

class RegisterUserCommandHandler
{
    public function handle(RegisterUserCommand $command)
    {
        // it will be called if validator won't throw any exception
    }
}

Execute the command:

class Controller
{
    /**
     * @var \DeSmart\CommandBus\Contracts\CommandBus
     */
    protected $commandBus;

    public function __construct(\DeSmart\CommandBus\Contracts\CommandBus $commandBus)
    {
        $this->commandBus = $commandBus;
    }

    public function index()
    {
        $command = new RegisterUserCommand("[email protected]");
        $this->commandBus->handle($command);
    }
}

Star History Chart