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

Use this call to suspend an agreement.
public suspendSubscription ( array $parameters = [] ) : Omnipay\PayPal\Message\RestSuspendSubscriptionRequest
$parameters array
Результат Omnipay\PayPal\Message\RestSuspendSubscriptionRequest
Пример #1
0
 public function testSuspendSubscription()
 {
     $this->setMockHttpResponse('RestGenericSubscriptionSuccess.txt');
     $response = $this->gateway->suspendSubscription($this->subscription_options)->send();
     $this->assertTrue($response->isSuccessful());
     $this->assertNull($response->getMessage());
 }