|
@@ -0,0 +1,87 @@
|
|
|
+<?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)
|
|
|
+ {
|
|
|
+ $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
|
|
|
+ static $nativeFunctionNames = null;
|
|
|
+ if (null === $nativeFunctionNames) {
|
|
|
+ $nativeFunctionNames = $this->getNativeFunctionNames();
|
|
|
+ }
|
|
|
+
|
|
|
+ $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;
|
|
|
+ }
|
|
|
+}
|