1
0
mirror of https://github.com/rlanvin/php-rrule.git synced 2025-02-26 15:54:14 +01:00

Merge pull request #17 from william1616/master

Add getRule() method to return original rule array
This commit is contained in:
Rémi Lanvin 2016-08-31 15:31:56 +03:00 committed by GitHub
commit 8b5ccbd330

View File

@ -2574,4 +2574,8 @@ class RRule implements RRuleInterface
$str = implode('',$parts);
return $str;
}
public function getRule() {
return $this->rule;
}
}