Explorer
home
/
zoteqbgb
/
public_html
/
vendor
/
psr
/
event-dispatcher
/
src
Location:
/home/zoteqbgb/public_html/vendor/psr/event-dispatcher/src
Root path:
/home/zoteqbgb/public_html/config/676626
Editing: StoppableEventInterface.php
<?php declare(strict_types=1); namespace Psr\EventDispatcher; /** * An Event whose processing may be interrupted when the event has been handled. * * A Dispatcher implementation MUST check to determine if an Event * is marked as stopped after each listener is called. If it is then it should * return immediately without calling any further Listeners. */ 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; }
Save maftirs
Upload
Start Upload
New File
Create File
New Folder
Create Folder
Directory Contents
Name
Size
Perms
Modified
Actions
EventDispatcherInterface.php
431 bytes
0644
2019-01-08 23:20
âï¸
ðï¸
Rename
ListenerProviderInterface.php
524 bytes
0644
2019-01-08 23:20
âï¸
ðï¸
Rename
StoppableEventInterface.php
785 bytes
0644
2019-01-08 23:20
âï¸
ðï¸
Rename
Chang
Apply