Files
kiri-core/System/Events/StoppableEventInterface.php
T

25 lines
434 B
PHP
Raw Normal View History

2021-08-03 18:18:09 +08:00
<?php
2021-08-11 01:04:57 +08:00
namespace Kiri\Events;
2021-08-03 18:18:09 +08:00
/**
*
*/
interface StoppableEventInterface
{
/**
* Is propagation stopped?
*
* This will typically only be used by the Dispatcher to determine if the
* previous listener halted propagation.
*
* @return bool
* True if the Event is complete and no further listeners should be called.
* False to continue calling listeners.
*/
public function isPropagationStopped() : bool;
}