1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?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\PSR2;
- use Symfony\CS\AbstractFixer;
- use Symfony\CS\Tokenizer\Tokens;
- /**
- * Fixer for rules defined in PSR2 ¶5.1.
- *
- * @author Dariusz Rumiński <dariusz.ruminski@gmail.com>
- */
- class ElseifFixer extends AbstractFixer
- {
- /**
- * Replace all `else if` (T_ELSE T_IF) with `elseif` (T_ELSEIF).
- *
- * {@inheritdoc}
- */
- public function fix(\SplFileInfo $file, $content)
- {
- $tokens = Tokens::fromCode($content);
- foreach ($tokens->findGivenKind(T_ELSE) as $index => $token) {
- $nextIndex = $tokens->getNextNonWhitespace($index);
- $nextToken = $tokens[$nextIndex];
- // if next meaning token is not T_IF - continue searching, this is not the case for fixing
- if (!$nextToken->isGivenKind(T_IF)) {
- continue;
- }
- // now we have T_ELSE following by T_IF so we could fix this
- // 1. clear whitespaces between T_ELSE and T_IF
- $tokens[$index + 1]->clear();
- // 2. change token from T_ELSE into T_ELSEIF
- $tokens->overrideAt($index, array(T_ELSEIF, 'elseif', $token->getLine()));
- // 3. clear succeeding T_IF
- $nextToken->clear();
- }
- // handle `T_ELSE T_WHITESPACE T_IF` treated as single `T_ELSEIF` by HHVM
- // see https://github.com/facebook/hhvm/issues/4796
- if (defined('HHVM_VERSION')) {
- foreach ($tokens->findGivenKind(T_ELSEIF) as $token) {
- $token->setContent('elseif');
- }
- }
- return $tokens->generateCode();
- }
- /**
- * {@inheritdoc}
- */
- public function getDescription()
- {
- return 'The keyword elseif should be used instead of else if so that all control keywords looks like single words.';
- }
- }
|