1 | <?php |
||
9 | class ServerInfo extends AbstractChatCommand |
||
10 | { |
||
11 | /** @var ServerInfoWindow */ |
||
12 | protected $serverInformationWindow; |
||
13 | |||
14 | /** |
||
15 | * @inheritdoc |
||
16 | */ |
||
17 | public function __construct(ServerInfoWindow $serverInformationWindow, $command, array $aliases = []) |
||
23 | |||
24 | /** |
||
25 | * Method called to execute the chat command. |
||
26 | * |
||
27 | * @param string $login |
||
28 | * @param InputInterface $input |
||
29 | * |
||
30 | * @return mixed |
||
31 | */ |
||
32 | public function execute($login, InputInterface $input) |
||
36 | } |
||
37 |