rlanvin / php-rrule

Lightweight and fast recurring dates library for PHP (RFC 5545)
Other
603 stars 83 forks source link

Add alias methods for better reading of code #148

Open program-the-brain-not-the-heartbeat opened 6 months ago

program-the-brain-not-the-heartbeat commented 6 months ago

Right now I have to:

$rrule->getRule()['INTERVAL'] $rrule->getRule()['FREQ']

Would look cleaner if it was $rrule->getFrequency() or $rrule->getInterval() which could just return $this->getRule()['FREQ'] etc.

rlanvin commented 4 months ago

That sounds like a good idea. Will you submit a PR?