X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/restate/vendor/league/event/src
home
/
gfecatvj
/
sites
/
restate
/
vendor
/
league
/
event
/
src
/
📁
..
📄
AbstractEvent.php
(988 B)
📄
AbstractListener.php
(222 B)
📄
BufferedEmitter.php
(811 B)
📄
CallbackListener.php
(1.14 KB)
📄
Emitter.php
(6.01 KB)
📄
EmitterAwareInterface.php
(363 B)
📄
EmitterAwareTrait.php
(669 B)
📄
EmitterInterface.php
(2.19 KB)
📄
EmitterTrait.php
(2.87 KB)
📄
Event.php
(631 B)
📄
EventInterface.php
(702 B)
📄
Generator.php
(141 B)
📄
GeneratorInterface.php
(194 B)
📄
GeneratorTrait.php
(627 B)
📄
ListenerAcceptor.php
(843 B)
📄
ListenerAcceptorInterface.php
(1.53 KB)
📄
ListenerInterface.php
(407 B)
📄
ListenerProviderInterface.php
(285 B)
📄
OneTimeListener.php
(1.15 KB)
Editing: ListenerAcceptorInterface.php
<?php namespace League\Event; interface ListenerAcceptorInterface { /** * High priority. * * @const int */ const P_HIGH = 100; /** * Normal priority. * * @const int */ const P_NORMAL = 0; /** * Low priority. * * @const int */ const P_LOW = -100; /** * Add a listener for an event. * * The first parameter should be the event name, and the second should be * the event listener. It may implement the League\Event\ListenerInterface * or simply be "callable". In this case, the priority emitter also accepts * an optional third parameter specifying the priority as an integer. You * may use one of our predefined constants here if you want. * * @param string $event * @param ListenerInterface|callable $listener * @param int $priority * * @return $this */ public function addListener($event, $listener, $priority = self::P_NORMAL); /** * Add a one time listener for an event. * * The first parameter should be the event name, and the second should be * the event listener. It may implement the League\Event\ListenerInterface * or simply be "callable". * * @param string $event * @param ListenerInterface|callable $listener * @param int $priority * * @return $this */ public function addOneTimeListener($event, $listener, $priority = self::P_NORMAL); }
Upload File
Create Folder