Markette\Gopay\Entity\RecurrentPayment::setRecurrenceCycle PHP Метод

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

Sets cycle
public setRecurrenceCycle ( string $cycle )
$cycle string DAY, MONTH, WEEK
    public function setRecurrenceCycle($cycle)
    {
        if (!in_array($cycle, $this->allowedCycle)) {
            throw new InvalidArgumentException('Not supported cycle "' . $cycle . '".');
        }
        $this->recurrenceCycle = $cycle;
    }