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.218.99.99
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
1 /
vendor /
musonza /
chat /
src /
Commanding /
Delete
Unzip
Name
Size
Permission
Date
Action
CommandBus.php
640
B
-rw-r--r--
2021-02-02 18:21
CommandHandler.php
110
B
-rw-r--r--
2021-02-02 18:21
CommandTranslator.php
417
B
-rw-r--r--
2021-02-02 18:21
Save
Rename
<?php namespace Musonza\Chat\Commanding; use Exception; class CommandTranslator { public function toCommandHandler($command) { $handler = str_replace('Command', 'CommandHandler', get_class($command)); if (!class_exists($handler)) { $message = "Command handler [$handler] does not exist."; throw new Exception($message); } return $handler; } }