Dumplie\CustomerService\Application\Command\CreatePaymentHandler::__construct PHP Method

__construct() public method

public __construct ( Dumplie\CustomerService\Domain\Orders $orders, Dumplie\CustomerService\Domain\Payments $payments )
$orders Dumplie\CustomerService\Domain\Orders
$payments Dumplie\CustomerService\Domain\Payments
    public function __construct(Orders $orders, Payments $payments)
    {
        $this->orders = $orders;
        $this->payments = $payments;
    }
CreatePaymentHandler