for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types = 1);
namespace Venta\Event;
use Venta\Contracts\Event\Event as EventContract;
/**
* Class AbstractEvent
*
* @package Venta\Event
*/
abstract class AbstractEvent implements EventContract
{
* Propagation stop flag.
* @var bool
private $propagationStop = false;
* @inheritDoc
public function isPropagationStopped(): bool
return $this->propagationStop;
}
public function stopPropagation()
$this->propagationStop = true;