Payu\Component\Order::setRecurringPayment PHP Method

setRecurringPayment() public method

Sets the value of recurringPayment.
public setRecurringPayment ( boolean $recurringPayment ) : self
$recurringPayment boolean the recurring payment
return self
    public function setRecurringPayment($recurringPayment)
    {
        $this->recurringPayment = (bool) $recurringPayment;
        return $this;
    }