Files
archived-scheduler/Trigger/ExcludeTimeTrigger.php
2025-01-09 17:26:50 +01:00

39 lines
1.1 KiB
PHP

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Scheduler\Trigger;
final class ExcludeTimeTrigger extends AbstractDecoratedTrigger
{
public function __construct(
private readonly TriggerInterface $inner,
private readonly \DateTimeImmutable $from,
private readonly \DateTimeImmutable $until,
) {
parent::__construct($inner);
}
public function __toString(): string
{
return \sprintf('%s, excluding from %s until %s', $this->inner, $this->from->format(\DateTimeInterface::ATOM), $this->until->format(\DateTimeInterface::ATOM));
}
public function getNextRunDate(\DateTimeImmutable $run): ?\DateTimeImmutable
{
$nextRun = $this->inner->getNextRunDate($run);
if ($nextRun >= $this->from && $nextRun <= $this->until) {
return $this->inner->getNextRunDate($this->until);
}
return $nextRun;
}
}