1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?php
- /*
- * This file is part of the PHP CS utility.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace Symfony\CS\Fixer\Contrib;
- use Symfony\CS\AbstractFixer;
- use Symfony\CS\Tokenizer\Tokens;
- /**
- * @author SpacePossum
- */
- final class NativeFunctionCasingFixer extends AbstractFixer
- {
- /**
- * {@inheritdoc}
- */
- public function fix(\SplFileInfo $file, $content)
- {
- static $nativeFunctionNames = null;
- if (null === $nativeFunctionNames) {
- $nativeFunctionNames = $this->getNativeFunctionNames();
- }
- $tokens = Tokens::fromCode($content);
- 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(array(T_DOUBLE_COLON, T_NEW, T_OBJECT_OPERATOR, T_FUNCTION))) {
- continue;
- }
- // do not though the function call if it is to a function in a namespace other than the default
- if (
- $tokens[$functionNamePrefix]->isGivenKind(T_NS_SEPARATOR)
- && $tokens[$tokens->getPrevMeaningfulToken($functionNamePrefix)]->isGivenKind(T_STRING)
- ) {
- 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]->setContent($nativeFunctionNames[$lower]);
- $index = $next;
- }
- return $tokens->generateCode();
- }
- /**
- * {@inheritdoc}
- */
- public function getDescription()
- {
- return 'Function defined by PHP should be called using the correct casing.';
- }
- private function getNativeFunctionNames()
- {
- $allFunctions = get_defined_functions();
- $functions = array();
- foreach ($allFunctions['internal'] as $function) {
- $functions[strtolower($function)] = $function;
- }
- return $functions;
- }
- }
|