poliander / cron

Parse and validate crontab expressions in PHP
https://github.com/poliander/cron
GNU General Public License v3.0
63 stars 10 forks source link

Support '@' expressions #25

Closed HB9HIL closed 2 months ago

HB9HIL commented 5 months ago

Added support for '@' expressions.

@yearly = 0 0 1 1 @annually = 0 0 1 1 @monthly = 0 0 1 @Weekly = 0 0 0 @daily = 0 0 @midnight = 0 0 @hourly = 0

The @ expressions gots translated in a basic cron and given to the origin parse function. Let me know what you think.

HB9HIL commented 2 months ago

Hello @poliander

What do you think about this one? :)