FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
omnipay
/
paypal
/
src
Edit File: ExpressInContextGateway.php
<?php namespace Omnipay\PayPal; /** * PayPal Express In-Context Class */ class ExpressInContextGateway extends ExpressGateway { public function getName() { return 'PayPal Express In-Context'; } public function authorize(array $parameters = array()) { return $this->createRequest('\Omnipay\PayPal\Message\ExpressInContextAuthorizeRequest', $parameters); } public function order(array $parameters = array()) { return $this->createRequest('\Omnipay\PayPal\Message\ExpressInContextOrderRequest', $parameters); } }
Save
Back