You are here

DateRecurDefaultRRuleInterface.php in Recurring Dates Field 8

Namespace

Drupal\date_recur

File

src/DateRecurDefaultRRuleInterface.php
View source
<?php

namespace Drupal\date_recur;

use RRule\RRuleInterface;
interface DateRecurDefaultRRuleInterface extends RRuleInterface {
  public function humanReadable();
  public function setTimezoneOffset($offset);
  public function getStartDate();

}

Interfaces