Dumplie\Customer\Application\Command\CreateCartHandler::handle PHP Method

handle() public method

public handle ( CreateCart $command )
$command CreateCart
    public function handle(CreateCart $command)
    {
        $this->carts->add(new Cart(new CartId($command->uuid()), $command->currency()));
    }
CreateCartHandler