We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb8988d commit da50f40Copy full SHA for da50f40
readme.md
@@ -15,6 +15,10 @@ Expression::isDue('@always');
15
Expression::isDue('@hourly', '2015-01-01 00:00:00');
16
Expression::isDue('*/20 * * * *', new DateTime);
17
Expression::isDue('5-34/4 * * * *', time());
18
+
19
+// Dont like static calls? Below is possible too!
20
+$expr = new Expression;
21
+$expr->isCronDue('*/1 * * * *', time());
22
```
23
24
### Real Abbreviations
0 commit comments