!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)

/uploads/script/vendor/doctrine/common/lib/Doctrine/Common/Proxy/Exception/   drwxr-xr-x
Free 13.01 GB of 57.97 GB (22.44%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     InvalidArgumentException.php (2.61 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Doctrine\Common\Proxy\Exception;

use 
Doctrine\Persistence\Proxy;
use 
InvalidArgumentException as BaseInvalidArgumentException;

/**
 * Proxy Invalid Argument Exception.
 *
 * @link   www.doctrine-project.org
 * @since  2.4
 * @author Marco Pivetta <ocramius@gmail.com>
 */
class InvalidArgumentException extends BaseInvalidArgumentException implements ProxyException
{
    
/**
     * @return self
     */
    
public static function proxyDirectoryRequired()
    {
        return new 
self('You must configure a proxy directory. See docs for details');
    }

    
/**
     * @param string $className
     * @param string $proxyNamespace
     *
     * @return self
     */
    
public static function notProxyClass($className$proxyNamespace)
    {
        return new 
self(sprintf('The class "%s" is not part of the proxy namespace "%s"'$className$proxyNamespace));
    }

    
/**
     * @param string $name
     *
     * @return self
     */
    
public static function invalidPlaceholder($name)
    {
        return new 
self(sprintf('Provided placeholder for "%s" must be either a string or a valid callable'$name));
    }

    
/**
     * @return self
     */
    
public static function proxyNamespaceRequired()
    {
        return new 
self('You must configure a proxy namespace');
    }

    
/**
     * @param Proxy $proxy
     *
     * @return self
     */
    
public static function unitializedProxyExpected(Proxy $proxy)
    {
        return new 
self(sprintf('Provided proxy of type "%s" must not be initialized.'get_class($proxy)));
    }

    
/**
     * @param mixed $callback
     *
     * @return self
     */
    
public static function invalidClassNotFoundCallback($callback)
    {
        
$type is_object($callback) ? get_class($callback) : gettype($callback);

        return new 
self(sprintf('Invalid \$notFoundCallback given: must be a callable, "%s" given'$type));
    }

    
/**
     * @param string $className
     *
     * @return self
     */
    
public static function classMustNotBeAbstract($className)
    {
        return new 
self(sprintf('Unable to create a proxy for an abstract class "%s".'$className));
    }

    
/**
     * @param string $className
     *
     * @return self
     */
    
public static function classMustNotBeFinal($className)
    {
        return new 
self(sprintf('Unable to create a proxy for a final class "%s".'$className));
    }

    
/**
     * @param mixed $value
     *
     * @return self
     */
    
public static function invalidAutoGenerateMode($value) : self
    
{
        return new 
self(sprintf('Invalid auto generate mode "%s" given.'$value));
    }
}

interface_exists(Proxy::class);

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