purchase() публичный Метод

public purchase ( array $parameters = [] ) : AbstractRequest
$parameters array
Результат Omnipay\Common\Message\AbstractRequest
Пример #1
0
 public function testPurchase()
 {
     /**
      * @var AopTradeWapPayResponse $response
      */
     $response = $this->gateway->purchase(['biz_content' => ['out_trade_no' => date('YmdHis') . mt_rand(1000, 9999), 'total_amount' => 0.01, 'subject' => 'test', 'product_code' => 'QUICK_MSECURITY_PAY']])->send();
     $this->assertTrue($response->isSuccessful());
     $this->assertTrue($response->isRedirect());
     $this->assertNotEmpty($response->getRedirectUrl());
 }