🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-15 01:44:52 | PHP 8.1.34
📂
/ (Root)
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
src
/
Php
📍 /opt/cpanel/ea-wappspector/vendor/rector/rector/src/Php
🔄 Refresh
✏️
Editing: ReservedKeywordAnalyzer.php
Read Only
<?php declare (strict_types=1); namespace Rector\Php; final class ReservedKeywordAnalyzer { /** * @var string[] */ private const NATIVE_VARIABLE_NAMES = ['_ENV', '_POST', '_GET', '_COOKIE', '_SERVER', '_FILES', '_REQUEST', '_SESSION', 'GLOBALS']; public function isNativeVariable(string $name) : bool { return \in_array($name, self::NATIVE_VARIABLE_NAMES, \true); } }
💾 Save Changes
❌ Cancel