* * 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\Token; use Symfony\CS\Tokenizer\Tokens; /** * @author Javier Spagnoletti */ final class LogicalNotOperatorsWithSuccessorSpaceFixer extends AbstractFixer { /** * {@inheritdoc} */ public function fix(\SplFileInfo $file, $content) { $tokens = Tokens::fromCode($content); for ($index = $tokens->count() - 1; $index >= 0; --$index) { $token = $tokens[$index]; if ($tokens->isUnaryPredecessorOperator($index) && $token->equals('!')) { if (!$tokens[$index + 1]->isWhitespace()) { $tokens->insertAt($index + 1, new Token(array(T_WHITESPACE, ' '))); } else { $tokens[$index + 1]->setContent(' '); } } } return $tokens->generateCode(); } /** * {@inheritdoc} */ public function getDescription() { return 'Logical NOT operators (!) should have one trailing whitespace.'; } /** * {@inheritdoc} */ public function getPriority() { // should be run after the UnaryOperatorsSpacesFixer return -10; } }