Omnipay\PayPal\Message\RestSearchTransactionRequest::getEndpoint PHP Метод

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

public getEndpoint ( )
    public function getEndpoint()
    {
        return parent::getEndpoint() . '/payments/billing-agreements/' . $this->getAgreementId() . '/transactions';
    }

Usage Example

 public function testEndpoint()
 {
     $this->assertStringEndsWith('/payments/billing-agreements/ABC-123/transactions', $this->request->getEndpoint());
 }