Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
wp /
vendor /
phpcsstandards /
phpcsutils /
[ HOME SHELL ]
Name
Size
Permission
Action
PHPCSUtils
[ DIR ]
drwxr-xr-x
CHANGELOG.md
84.57
KB
-rw-r--r--
LICENSE
7.47
KB
-rw-r--r--
README.md
14.7
KB
-rw-r--r--
composer.json
3.25
KB
-rw-r--r--
phpcsutils-autoload.php
2.28
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : phpcsutils-autoload.php
<?php /** * PHPCSUtils, utility functions and classes for PHP_CodeSniffer sniff developers. * * Autoloader for the PHPCSUtils files. * * - If an external standard only supports PHPCS >= 3.1.0 and uses the PHPCS * native unit test framework, this file does not need to be included. * * - If an external standard uses its own unit test setup, this file should * be included from the unit test bootstrap file. * * - If an external standard uses the PHPCSUtils {@see PHPCSUtils\TestUtils\UtilityMethodTestCase} * class to test their own utility methods, this file should be included from * the unit test bootstrap file. * * @package PHPCSUtils * @copyright 2019-2020 PHPCSUtils Contributors * @license https://opensource.org/licenses/LGPL-3.0 LGPL3 * @link https://github.com/PHPCSStandards/PHPCSUtils * * @since 1.0.0 */ if (defined('PHPCSUTILS_AUTOLOAD') === false) { /* * Register an autoloader. * * External PHPCS standards which have their own unit test suite * should include this file in their test runner bootstrap. */ spl_autoload_register(function ($fqClassName) { // Only try & load our own classes. if (stripos($fqClassName, 'PHPCSUtils\\') !== 0) { return; } $file = realpath(__DIR__) . DIRECTORY_SEPARATOR . strtr($fqClassName, '\\', DIRECTORY_SEPARATOR) . '.php'; if (file_exists($file)) { include_once $file; } }); define('PHPCSUTILS_AUTOLOAD', true); } if (defined('PHPCSUTILS_PHPUNIT_ALIASES_SET') === false) { /* * Alias the PHPUnit 4/5 TestCase class to its PHPUnit 6+ name. * * This allows both the PHPCSUtils native unit tests as well as the * `UtilityMethodTestCase` class to work cross-version with PHPUnit * below 6.x and above. * * {@internal The `class_exists` wrappers are needed to play nice with * PHPUnit bootstrap files of external standards which may be creating * cross-version compatibility in a similar manner.}} */ if (class_exists('PHPUnit_Framework_TestCase') === true && class_exists('PHPUnit\Framework\TestCase') === false ) { class_alias('PHPUnit_Framework_TestCase', 'PHPUnit\Framework\TestCase'); } define('PHPCSUTILS_PHPUNIT_ALIASES_SET', true); }
Close