Files
php-flasher/EventDispatcher/Event/StoppableEventInterface.php
T

12 lines
173 B
PHP

<?php
namespace Flasher\Prime\EventDispatcher\Event;
interface StoppableEventInterface
{
/**
* @return bool
*/
public function isPropagationStopped();
}