FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
omnipay
/
paypal
/
src
/
Message
Edit File: ProPurchaseRequest.php
<?php namespace Omnipay\PayPal\Message; /** * PayPal Pro Purchase Request */ class ProPurchaseRequest extends ProAuthorizeRequest { public function getData() { $data = parent::getData(); $data['PAYMENTACTION'] = 'Sale'; return $data; } }
Save
Back