Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.15.10.50
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
psr /
event-dispatcher /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
EventDispatcherInterface.php
431
B
-rw-rw-r--
2019-01-08 18:20
ListenerProviderInterface.php
524
B
-rw-rw-r--
2019-01-08 18:20
StoppableEventInterface.php
785
B
-rw-rw-r--
2019-01-08 18:20
Save
Rename
<?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; }