mirror of
https://github.com/symfony/scheduler.git
synced 2026-03-24 00:02:18 +01:00
57 lines
1.2 KiB
PHP
57 lines
1.2 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;
|
|
|
|
/**
|
|
* @author Kevin Bond <kevinbond@gmail.com>
|
|
*/
|
|
abstract class AbstractDecoratedTrigger implements StatefulTriggerInterface
|
|
{
|
|
public function __construct(private TriggerInterface $inner)
|
|
{
|
|
}
|
|
|
|
public function continue(\DateTimeImmutable $startedAt): void
|
|
{
|
|
if ($this->inner instanceof StatefulTriggerInterface) {
|
|
$this->inner->continue($startedAt);
|
|
}
|
|
}
|
|
|
|
final public function inner(): TriggerInterface
|
|
{
|
|
$inner = $this->inner;
|
|
|
|
while ($inner instanceof self) {
|
|
$inner = $inner->inner;
|
|
}
|
|
|
|
return $inner;
|
|
}
|
|
|
|
/**
|
|
* @return \Traversable<self>
|
|
*/
|
|
final public function decorators(): \Traversable
|
|
{
|
|
yield $this;
|
|
|
|
$inner = $this->inner;
|
|
|
|
while ($inner instanceof self) {
|
|
yield $inner;
|
|
|
|
$inner = $inner->inner;
|
|
}
|
|
}
|
|
}
|