WP File Manager
Current Path:
/
home
/
itutorethiopia
/
public_html
/
vendor
/
omnipay
/
paypal
/
src
/
Name
Action
..
ExpressGateway.php
Edit
ExpressInContextGateway.php
Edit
Message
PayPalItem.php
Edit
PayPalItemBag.php
Edit
ProGateway.php
Edit
RestGateway.php
Edit
Support
Editing: 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); } }