123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <?php
- /*
- * This file is part of PHP CS Fixer.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- * Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace PhpCsFixer\Fixer\Casing;
- use PhpCsFixer\AbstractFixer;
- use PhpCsFixer\FixerDefinition\CodeSample;
- use PhpCsFixer\FixerDefinition\FixerDefinition;
- use PhpCsFixer\Tokenizer\Token;
- use PhpCsFixer\Tokenizer\Tokens;
- /**
- * @author SpacePossum
- */
- final class NativeFunctionCasingFixer extends AbstractFixer
- {
- /**
- * {@inheritdoc}
- */
- public function getDefinition()
- {
- return new FixerDefinition(
- 'Function defined by PHP should be called using the correct casing.',
- [new CodeSample("<?php\nSTRLEN(\$str);")]
- );
- }
- /**
- * {@inheritdoc}
- */
- public function isCandidate(Tokens $tokens)
- {
- return $tokens->isTokenKindFound(T_STRING);
- }
- /**
- * {@inheritdoc}
- */
- protected function applyFix(\SplFileInfo $file, Tokens $tokens)
- {
- static $nativeFunctionNames = null;
- if (null === $nativeFunctionNames) {
- $nativeFunctionNames = $this->getNativeFunctionNames();
- }
- for ($index = 0, $count = $tokens->count(); $index < $count; ++$index) {
- // test if we are at a function all
- if (!$tokens[$index]->isGivenKind(T_STRING)) {
- continue;
- }
- $next = $tokens->getNextMeaningfulToken($index);
- if (!$tokens[$next]->equals('(')) {
- $index = $next;
- continue;
- }
- $functionNamePrefix = $tokens->getPrevMeaningfulToken($index);
- if ($tokens[$functionNamePrefix]->isGivenKind([T_DOUBLE_COLON, T_NEW, T_OBJECT_OPERATOR, T_FUNCTION])) {
- continue;
- }
- if ($tokens[$functionNamePrefix]->isGivenKind(T_NS_SEPARATOR)) {
- // skip if the call is to a constructor or to a function in a namespace other than the default
- $prev = $tokens->getPrevMeaningfulToken($functionNamePrefix);
- if ($tokens[$prev]->isGivenKind([T_STRING, T_NEW])) {
- continue;
- }
- }
- // test if the function call is to a native PHP function
- $lower = strtolower($tokens[$index]->getContent());
- if (!array_key_exists($lower, $nativeFunctionNames)) {
- continue;
- }
- $tokens[$index] = new Token([T_STRING, $nativeFunctionNames[$lower]]);
- $index = $next;
- }
- }
- /**
- * @return array<string, string>
- */
- private function getNativeFunctionNames()
- {
- $allFunctions = get_defined_functions();
- $functions = [];
- foreach ($allFunctions['internal'] as $function) {
- $functions[strtolower($function)] = $function;
- }
- return $functions;
- }
- }
|