for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace MyTester\Events;
use Psr\EventDispatcher\StoppableEventInterface;
final class TestStoppableEvent implements StoppableEventInterface
{
public bool $stopped = false;
public function isPropagationStopped(): bool
return $this->stopped;
}