PayU\Configuration::getPaymentEndpointUrl PHP Method

getPaymentEndpointUrl() public method

public getPaymentEndpointUrl ( ) : string
return string
    public function getPaymentEndpointUrl()
    {
        return $this->paymentEndpointUrl;
    }

Usage Example

Example #1
0
 public function testSetPaymentEndpointUrl()
 {
     $this->configuration->setPaymentEndpointUrl('TestPaymentEndpointUrlSetter');
     $this->assertEquals('TestPaymentEndpointUrlSetter', $this->configuration->getPaymentEndpointUrl());
 }
All Usage Examples Of PayU\Configuration::getPaymentEndpointUrl