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

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/queuepro/vendor/laravel/framework/src/Illuminate/Routing/   drwxrwxr-x
Free 13.26 GB of 57.97 GB (22.88%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     RouteDependencyResolverTrait.php (3.4 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Illuminate\Routing;

use 
Illuminate\Support\Arr;
use 
Illuminate\Support\Reflector;
use 
ReflectionFunctionAbstract;
use 
ReflectionMethod;
use 
ReflectionParameter;
use 
stdClass;

trait 
RouteDependencyResolverTrait
{
    
/**
     * Resolve the object method's type-hinted dependencies.
     *
     * @param  array  $parameters
     * @param  object  $instance
     * @param  string  $method
     * @return array
     */
    
protected function resolveClassMethodDependencies(array $parameters$instance$method)
    {
        if (! 
method_exists($instance$method)) {
            return 
$parameters;
        }

        return 
$this->resolveMethodDependencies(
            
$parameters, new ReflectionMethod($instance$method)
        );
    }

    
/**
     * Resolve the given method's type-hinted dependencies.
     *
     * @param  array  $parameters
     * @param  \ReflectionFunctionAbstract  $reflector
     * @return array
     */
    
public function resolveMethodDependencies(array $parametersReflectionFunctionAbstract $reflector)
    {
        
$instanceCount 0;

        
$values array_values($parameters);

        
$skippableValue = new stdClass;

        foreach (
$reflector->getParameters() as $key => $parameter) {
            
$instance $this->transformDependency($parameter$parameters$skippableValue);

            if (
$instance !== $skippableValue) {
                
$instanceCount++;

                
$this->spliceIntoParameters($parameters$key$instance);
            } elseif (! isset(
$values[$key $instanceCount]) &&
                      
$parameter->isDefaultValueAvailable()) {
                
$this->spliceIntoParameters($parameters$key$parameter->getDefaultValue());
            }
        }

        return 
$parameters;
    }

    
/**
     * Attempt to transform the given parameter into a class instance.
     *
     * @param  \ReflectionParameter  $parameter
     * @param  array  $parameters
     * @param  object  $skippableValue
     * @return mixed
     */
    
protected function transformDependency(ReflectionParameter $parameter$parameters$skippableValue)
    {
        
$className Reflector::getParameterClassName($parameter);

        
// If the parameter has a type-hinted class, we will check to see if it is already in
        // the list of parameters. If it is we will just skip it as it is probably a model
        // binding and we do not want to mess with those; otherwise, we resolve it here.
        
if ($className && ! $this->alreadyInParameters($className$parameters)) {
            return 
$parameter->isDefaultValueAvailable() ? null $this->container->make($className);
        }

        return 
$skippableValue;
    }

    
/**
     * Determine if an object of the given class is in a list of parameters.
     *
     * @param  string  $class
     * @param  array  $parameters
     * @return bool
     */
    
protected function alreadyInParameters($class, array $parameters)
    {
        return ! 
is_null(Arr::first($parameters, function ($value) use ($class) {
            return 
$value instanceof $class;
        }));
    }

    
/**
     * Splice the given value into the parameter list.
     *
     * @param  array  $parameters
     * @param  string  $offset
     * @param  mixed  $value
     * @return void
     */
    
protected function spliceIntoParameters(array &$parameters$offset$value)
    {
        
array_splice(
            
$parameters$offset0, [$value]
        );
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

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