gateway = $gateway; $this->gatewayDriver = $gatewayDriver; $this->request = $request; } /** * @return string */ public function getGateway(): string { return $this->gateway; } /** * @return PaymentGatewayDriver */ public function getDriver(): PaymentGatewayDriver { return $this->gatewayDriver; } /** * @return Request */ public function getRequest(): Request { return $this->request; } }