Files
archived-scheduler/Trigger/AbstractDecoratedTrigger.php
2023-09-15 16:56:41 +03:00

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;
}
}
}