![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/friendsofphp/php-cs-fixer/src/Tokenizer/ |
<?php declare(strict_types=1); /* * This file is part of PHP CS Fixer. * * (c) Fabien Potencier <[email protected]> * Dariusz Rumiński <[email protected]> * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace PhpCsFixer\Tokenizer; /** * @author Dariusz Rumiński <[email protected]> */ final class CT { public const T_ARRAY_INDEX_CURLY_BRACE_CLOSE = 10_001; public const T_ARRAY_INDEX_CURLY_BRACE_OPEN = 10_002; public const T_ARRAY_SQUARE_BRACE_CLOSE = 10_003; public const T_ARRAY_SQUARE_BRACE_OPEN = 10_004; public const T_ARRAY_TYPEHINT = 10_005; public const T_BRACE_CLASS_INSTANTIATION_CLOSE = 10_006; public const T_BRACE_CLASS_INSTANTIATION_OPEN = 10_007; public const T_CLASS_CONSTANT = 10_008; public const T_CONST_IMPORT = 10_009; public const T_CURLY_CLOSE = 10_010; public const T_DESTRUCTURING_SQUARE_BRACE_CLOSE = 10_011; public const T_DESTRUCTURING_SQUARE_BRACE_OPEN = 10_012; public const T_DOLLAR_CLOSE_CURLY_BRACES = 10_013; public const T_DYNAMIC_PROP_BRACE_CLOSE = 10_014; public const T_DYNAMIC_PROP_BRACE_OPEN = 10_015; public const T_DYNAMIC_VAR_BRACE_CLOSE = 10_016; public const T_DYNAMIC_VAR_BRACE_OPEN = 10_017; public const T_FUNCTION_IMPORT = 10_018; public const T_GROUP_IMPORT_BRACE_CLOSE = 10_019; public const T_GROUP_IMPORT_BRACE_OPEN = 10_020; public const T_NAMESPACE_OPERATOR = 10_021; public const T_NULLABLE_TYPE = 10_022; public const T_RETURN_REF = 10_023; public const T_TYPE_ALTERNATION = 10_024; public const T_TYPE_COLON = 10_025; public const T_USE_LAMBDA = 10_026; public const T_USE_TRAIT = 10_027; public const T_CONSTRUCTOR_PROPERTY_PROMOTION_PUBLIC = 10_028; public const T_CONSTRUCTOR_PROPERTY_PROMOTION_PROTECTED = 10_029; public const T_CONSTRUCTOR_PROPERTY_PROMOTION_PRIVATE = 10_030; public const T_ATTRIBUTE_CLOSE = 10_031; public const T_NAMED_ARGUMENT_NAME = 10_032; public const T_NAMED_ARGUMENT_COLON = 10_033; public const T_FIRST_CLASS_CALLABLE = 10_034; public const T_TYPE_INTERSECTION = 10_035; public const T_DISJUNCTIVE_NORMAL_FORM_TYPE_PARENTHESIS_OPEN = 10_036; public const T_DISJUNCTIVE_NORMAL_FORM_TYPE_PARENTHESIS_CLOSE = 10_037; public const T_DYNAMIC_CLASS_CONSTANT_FETCH_CURLY_BRACE_OPEN = 10_038; public const T_DYNAMIC_CLASS_CONSTANT_FETCH_CURLY_BRACE_CLOSE = 10_039; private function __construct() {} /** * Get name for custom token. * * @param int $value custom token value */ public static function getName(int $value): string { if (!self::has($value)) { throw new \InvalidArgumentException(sprintf('No custom token was found for "%s".', $value)); } $tokens = self::getMapById(); return 'CT::'.$tokens[$value]; } /** * Check if given custom token exists. * * @param int $value custom token value */ public static function has(int $value): bool { $tokens = self::getMapById(); return isset($tokens[$value]); } /** * @return array<self::T_*, string> */ private static function getMapById(): array { static $constants; if (null === $constants) { $reflection = new \ReflectionClass(__CLASS__); $constants = array_flip($reflection->getConstants()); } return $constants; } }