X7ROOT File Manager
Current Path:
/home/prisjneg/public_html/vendor/psr/event-dispatcher/src
home
/
prisjneg
/
public_html
/
vendor
/
psr
/
event-dispatcher
/
src
/
📁
..
📄
EventDispatcherInterface.php
(431 B)
📄
ListenerProviderInterface.php
(524 B)
📄
StoppableEventInterface.php
(785 B)
Editing: ListenerProviderInterface.php
<?php declare(strict_types=1); namespace Psr\EventDispatcher; /** * Mapper from an event to the listeners that are applicable to that event. */ interface ListenerProviderInterface { /** * @param object $event * An event for which to return the relevant listeners. * @return iterable[callable] * An iterable (array, iterator, or generator) of callables. Each * callable MUST be type-compatible with $event. */ public function getListenersForEvent(object $event) : iterable; }
Upload File
Create Folder