<?php
declare(strict_types=1);
namespace League\CommonMark\Event;
use Psr\EventDispatcher\StoppableEventInterface;
abstract class AbstractEvent implements StoppableEventInterface
{
private bool $propagationStopped = false;
final public function isPropagationStopped(): bool
{
return $this->propagationStopped;
}