Created
December 28, 2019 22:02
-
-
Save emjayess/0da5e49aa46ca4fbb0267faf0ad5125b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* What is this: 'thisInterval()' as a closure-as-callable-php-variable | |
* | |
* Explainer: imagine having a job scheduler with a production accuracy requirement to the minute.. | |
* Now imagine desiring an easy way to loosen that accuracy constraint, for sake of easier tests.. | |
* With an approach like this, just put the accuracy setting into configuration, e.g. .env file. | |
*/ | |
// this $cfg could come from a per-environment .env file, for example | |
// so there could exist different configs for pre-prod (vs) production | |
$cfg = 'this_hour'; // 'this_minute' | |
$now = Carbon::now(); | |
$thisInterval = function($schedule) use ($cfg, $now) { | |
return ($cfg == 'this_hour') | |
// configured to match 'this hour' (i.e. testing): | |
? $now->isSameHour( $schedule->time_of_day ) | |
// configured to match 'this minute' (i.e. production): | |
: $now->isSameMinute( $schedule->time_of_day ) | |
; | |
} | |
$schedules = Schedule::whereBetween( /* this part works */ ) | |
// now filter (or reduce) schedules using the | |
// callable closure, which in turn uses $cfg: | |
->filter( $thisInterval($schedule) ) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment