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 302a579 commit 5c488a0Copy full SHA for 5c488a0
src/Illuminate/Console/Scheduling/ManagesFrequencies.php
@@ -467,6 +467,21 @@ public function quarterly()
467
->spliceIntoPosition(4, '1-12/3');
468
}
469
470
+ /**
471
+ * Schedule the event to run quarterly on a given day and time.
472
+ *
473
+ * @param int $dayOfQuarter
474
+ * @param int $time
475
+ * @return $this
476
+ */
477
+ public function quarterlyOn($dayOfQuarter = 1, $time = '0:0')
478
+ {
479
+ $this->dailyAt($time);
480
+
481
+ return $this->spliceIntoPosition(3, $dayOfQuarter)
482
+ ->spliceIntoPosition(4, '1-12/3');
483
+ }
484
485
/**
486
* Schedule the event to run yearly.
487
*
0 commit comments