!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/cloud_campaign/vendor/phpunit/phpunit/src/Framework/MockObject/Builder/   drwxr-xr-x
Free 13.2 GB of 57.97 GB (22.77%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     InvocationMocker.php (8.03 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php declare(strict_types=1);
/*
 * This file is part of PHPUnit.
 *
 * (c) Sebastian Bergmann <sebastian@phpunit.de>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace PHPUnit\Framework\MockObject\Builder;

use function 
array_map;
use function 
array_merge;
use function 
count;
use function 
in_array;
use function 
is_string;
use function 
strtolower;
use 
PHPUnit\Framework\Constraint\Constraint;
use 
PHPUnit\Framework\MockObject\ConfigurableMethod;
use 
PHPUnit\Framework\MockObject\IncompatibleReturnValueException;
use 
PHPUnit\Framework\MockObject\InvocationHandler;
use 
PHPUnit\Framework\MockObject\Matcher;
use 
PHPUnit\Framework\MockObject\MatcherAlreadyRegisteredException;
use 
PHPUnit\Framework\MockObject\MethodCannotBeConfiguredException;
use 
PHPUnit\Framework\MockObject\MethodNameAlreadyConfiguredException;
use 
PHPUnit\Framework\MockObject\MethodNameNotConfiguredException;
use 
PHPUnit\Framework\MockObject\MethodParametersAlreadyConfiguredException;
use 
PHPUnit\Framework\MockObject\Rule;
use 
PHPUnit\Framework\MockObject\Stub\ConsecutiveCalls;
use 
PHPUnit\Framework\MockObject\Stub\Exception;
use 
PHPUnit\Framework\MockObject\Stub\ReturnArgument;
use 
PHPUnit\Framework\MockObject\Stub\ReturnCallback;
use 
PHPUnit\Framework\MockObject\Stub\ReturnReference;
use 
PHPUnit\Framework\MockObject\Stub\ReturnSelf;
use 
PHPUnit\Framework\MockObject\Stub\ReturnStub;
use 
PHPUnit\Framework\MockObject\Stub\ReturnValueMap;
use 
PHPUnit\Framework\MockObject\Stub\Stub;
use 
Throwable;

/**
 * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
 */
final class InvocationMocker implements InvocationStubberMethodNameMatch
{
    
/**
     * @var InvocationHandler
     */
    
private $invocationHandler;

    
/**
     * @var Matcher
     */
    
private $matcher;

    
/**
     * @var ConfigurableMethod[]
     */
    
private $configurableMethods;

    public function 
__construct(InvocationHandler $handlerMatcher $matcherConfigurableMethod ...$configurableMethods)
    {
        
$this->invocationHandler   $handler;
        
$this->matcher             $matcher;
        
$this->configurableMethods $configurableMethods;
    }

    
/**
     * @throws MatcherAlreadyRegisteredException
     *
     * @return $this
     */
    
public function id($id): self
    
{
        
$this->invocationHandler->registerMatcher($id$this->matcher);

        return 
$this;
    }

    
/**
     * @return $this
     */
    
public function will(Stub $stub): Identity
    
{
        
$this->matcher->setStub($stub);

        return 
$this;
    }

    
/**
     * @param mixed   $value
     * @param mixed[] $nextValues
     *
     * @throws IncompatibleReturnValueException
     */
    
public function willReturn($value, ...$nextValues): self
    
{
        if (
count($nextValues) === 0) {
            
$this->ensureTypeOfReturnValues([$value]);

            
$stub $value instanceof Stub $value : new ReturnStub($value);
        } else {
            
$values array_merge([$value], $nextValues);

            
$this->ensureTypeOfReturnValues($values);

            
$stub = new ConsecutiveCalls($values);
        }

        return 
$this->will($stub);
    }

    public function 
willReturnReference(&$reference): self
    
{
        
$stub = new ReturnReference($reference);

        return 
$this->will($stub);
    }

    public function 
willReturnMap(array $valueMap): self
    
{
        
$stub = new ReturnValueMap($valueMap);

        return 
$this->will($stub);
    }

    public function 
willReturnArgument($argumentIndex): self
    
{
        
$stub = new ReturnArgument($argumentIndex);

        return 
$this->will($stub);
    }

    public function 
willReturnCallback($callback): self
    
{
        
$stub = new ReturnCallback($callback);

        return 
$this->will($stub);
    }

    public function 
willReturnSelf(): self
    
{
        
$stub = new ReturnSelf;

        return 
$this->will($stub);
    }

    public function 
willReturnOnConsecutiveCalls(...$values): self
    
{
        
$stub = new ConsecutiveCalls($values);

        return 
$this->will($stub);
    }

    public function 
willThrowException(Throwable $exception): self
    
{
        
$stub = new Exception($exception);

        return 
$this->will($stub);
    }

    
/**
     * @return $this
     */
    
public function after($id): self
    
{
        
$this->matcher->setAfterMatchBuilderId($id);

        return 
$this;
    }

    
/**
     * @param mixed[] $arguments
     *
     * @throws \PHPUnit\Framework\Exception
     * @throws MethodNameNotConfiguredException
     * @throws MethodParametersAlreadyConfiguredException
     *
     * @return $this
     */
    
public function with(...$arguments): self
    
{
        
$this->ensureParametersCanBeConfigured();

        
$this->matcher->setParametersRule(new Rule\Parameters($arguments));

        return 
$this;
    }

    
/**
     * @param array ...$arguments
     *
     * @throws \PHPUnit\Framework\Exception
     * @throws MethodNameNotConfiguredException
     * @throws MethodParametersAlreadyConfiguredException
     *
     * @return $this
     */
    
public function withConsecutive(...$arguments): self
    
{
        
$this->ensureParametersCanBeConfigured();

        
$this->matcher->setParametersRule(new Rule\ConsecutiveParameters($arguments));

        return 
$this;
    }

    
/**
     * @throws MethodNameNotConfiguredException
     * @throws MethodParametersAlreadyConfiguredException
     *
     * @return $this
     */
    
public function withAnyParameters(): self
    
{
        
$this->ensureParametersCanBeConfigured();

        
$this->matcher->setParametersRule(new Rule\AnyParameters);

        return 
$this;
    }

    
/**
     * @param Constraint|string $constraint
     *
     * @throws \PHPUnit\Framework\InvalidArgumentException
     * @throws MethodCannotBeConfiguredException
     * @throws MethodNameAlreadyConfiguredException
     *
     * @return $this
     */
    
public function method($constraint): self
    
{
        if (
$this->matcher->hasMethodNameRule()) {
            throw new 
MethodNameAlreadyConfiguredException;
        }

        
$configurableMethodNames array_map(
            static function (
ConfigurableMethod $configurable) {
                return 
strtolower($configurable->getName());
            },
            
$this->configurableMethods
        
);

        if (
is_string($constraint) && !in_array(strtolower($constraint), $configurableMethodNamestrue)) {
            throw new 
MethodCannotBeConfiguredException($constraint);
        }

        
$this->matcher->setMethodNameRule(new Rule\MethodName($constraint));

        return 
$this;
    }

    
/**
     * @throws MethodNameNotConfiguredException
     * @throws MethodParametersAlreadyConfiguredException
     */
    
private function ensureParametersCanBeConfigured(): void
    
{
        if (!
$this->matcher->hasMethodNameRule()) {
            throw new 
MethodNameNotConfiguredException;
        }

        if (
$this->matcher->hasParametersRule()) {
            throw new 
MethodParametersAlreadyConfiguredException;
        }
    }

    private function 
getConfiguredMethod(): ?ConfigurableMethod
    
{
        
$configuredMethod null;

        foreach (
$this->configurableMethods as $configurableMethod) {
            if (
$this->matcher->getMethodNameRule()->matchesName($configurableMethod->getName())) {
                if (
$configuredMethod !== null) {
                    return 
null;
                }

                
$configuredMethod $configurableMethod;
            }
        }

        return 
$configuredMethod;
    }

    
/**
     * @throws IncompatibleReturnValueException
     */
    
private function ensureTypeOfReturnValues(array $values): void
    
{
        
$configuredMethod $this->getConfiguredMethod();

        if (
$configuredMethod === null) {
            return;
        }

        foreach (
$values as $value) {
            if (!
$configuredMethod->mayReturn($value)) {
                throw new 
IncompatibleReturnValueException(
                    
$configuredMethod,
                    
$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.0274 ]--