AopTransferToAccountPageGateway.php 431 B

123456789101112131415
  1. <?php
  2. namespace App\Admin\Util;
  3. use Omnipay\Alipay\AbstractAopGateway;
  4. use Omnipay\Alipay\Requests\AopTransferToAccountRequest;
  5. class AopTransferToAccountPageGateway extends AbstractAopGateway
  6. {
  7. public function getName()
  8. {
  9. return 'Alipay transfer Gateway';
  10. }
  11. public function purchase(array $parameters = [])
  12. {
  13. return $this->createRequest(AopTransferToAccountRequest::class, $parameters);
  14. }
  15. }