Dumplie\Customer\Application\Command\PlaceOrderHandler::__construct PHP Method

__construct() public method

public __construct ( Dumplie\Customer\Domain\Carts $carts, Dumplie\Customer\Domain\Products $products, Dumplie\Customer\Domain\Checkouts $checkouts, Dumplie\Customer\Domain\Orders $orders, Dumplie\SharedKernel\Application\EventLog $eventLog )
$carts Dumplie\Customer\Domain\Carts
$products Dumplie\Customer\Domain\Products
$checkouts Dumplie\Customer\Domain\Checkouts
$orders Dumplie\Customer\Domain\Orders
$eventLog Dumplie\SharedKernel\Application\EventLog
    public function __construct(Carts $carts, Products $products, Checkouts $checkouts, Orders $orders, EventLog $eventLog)
    {
        $this->carts = $carts;
        $this->checkouts = $checkouts;
        $this->products = $products;
        $this->orders = $orders;
        $this->eventLog = $eventLog;
    }
PlaceOrderHandler