first
This commit is contained in:
24
system/vendor/omnipay/paypal/src/ExpressInContextGateway.php
vendored
Executable file
24
system/vendor/omnipay/paypal/src/ExpressInContextGateway.php
vendored
Executable file
@@ -0,0 +1,24 @@
|
||||
<?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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user