17 lines
278 B
PHP
17 lines
278 B
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
* This file is part of the PHPFlasher package.
|
||
|
* (c) Younes KHOUBZA <younes.khoubza@gmail.com>
|
||
|
*/
|
||
|
|
||
|
namespace Flasher\Prime\EventDispatcher\Event;
|
||
|
|
||
|
interface StoppableEventInterface
|
||
|
{
|
||
|
/**
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function isPropagationStopped();
|
||
|
}
|