PayU\Configuration::setLoyaltyInquiryEndPointUrl PHP Method

setLoyaltyInquiryEndPointUrl() public method

public setLoyaltyInquiryEndPointUrl ( string $loyaltyInquiryEndPointUrl )
$loyaltyInquiryEndPointUrl string
    public function setLoyaltyInquiryEndPointUrl($loyaltyInquiryEndPointUrl)
    {
        $this->loyaltyInquiryEndPointUrl = $loyaltyInquiryEndPointUrl;
        return $this;
    }

Usage Example

Example #1
0
 public function testSetLoyaltyInquiryEndPointUrl()
 {
     $this->configuration->setLoyaltyInquiryEndPointUrl('TestLoyaltyInquiryEndPointUrlSetter');
     $this->assertEquals('TestLoyaltyInquiryEndPointUrlSetter', $this->configuration->getLoyaltyInquiryEndPointUrl());
 }