当前位置: 首页>>代码示例>>PHP>>正文


PHP Token::getContent方法代码示例

本文整理汇总了PHP中PhpCsFixer\Tokenizer\Token::getContent方法的典型用法代码示例。如果您正苦于以下问题:PHP Token::getContent方法的具体用法?PHP Token::getContent怎么用?PHP Token::getContent使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PhpCsFixer\Tokenizer\Token的用法示例。


在下文中一共展示了Token::getContent方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: process

 /**
  * {@inheritdoc}
  */
 public function process(Tokens $tokens, Token $token, $index)
 {
     if ($token->isGivenKind(T_USE) && $this->isUseForLambda($tokens, $index)) {
         $token->override(array(CT_USE_LAMBDA, $token->getContent()));
     }
     if (!$token->isClassy()) {
         return;
     }
     $prevTokenIndex = $tokens->getPrevMeaningfulToken($index);
     $prevToken = $prevTokenIndex === null ? null : $tokens[$prevTokenIndex];
     if ($prevToken->isGivenKind(T_DOUBLE_COLON)) {
         return;
     }
     // Skip whole class braces content.
     // That way we can skip whole tokens in class declaration, therefore skip `T_USE` for traits.
     $index = $tokens->getNextTokenOfKind($index, array('{'));
     $innerLimit = $tokens->findBlockEnd(Tokens::BLOCK_TYPE_CURLY_BRACE, $index);
     while ($index < $innerLimit) {
         $token = $tokens[++$index];
         if (!$token->isGivenKind(T_USE)) {
             continue;
         }
         if ($this->isUseForLambda($tokens, $index)) {
             $token->override(array(CT_USE_LAMBDA, $token->getContent()));
         } else {
             $token->override(array(CT_USE_TRAIT, $token->getContent()));
         }
     }
 }
开发者ID:cryode,项目名称:PHP-CS-Fixer,代码行数:32,代码来源:UseTransformer.php

示例2: fixWhitespace

 /**
  * Cleanup a whitespace token.
  *
  * @param Token $token
  */
 private function fixWhitespace(Token $token)
 {
     $content = $token->getContent();
     // if there is more than one new line in the whitespace, then we need to fix it
     if (substr_count($content, "\n") > 1) {
         // the final bit of the whitespace must be the next statement's indentation
         $lines = Utils::splitLines($content);
         $token->setContent("\n" . end($lines));
     }
 }
开发者ID:infinitely-young,项目名称:PHP-CS-Fixer,代码行数:15,代码来源:NoBlankLinesAfterClassOpeningFixer.php

示例3: process

 /**
  * {@inheritdoc}
  */
 public function process(Tokens $tokens, Token $token, $index)
 {
     if (!$token->isGivenKind(array(T_CONST, T_FUNCTION))) {
         return;
     }
     $prevToken = $tokens[$tokens->getPrevMeaningfulToken($index)];
     if ($prevToken->isGivenKind(T_USE)) {
         $token->override(array($token->isGivenKind(T_FUNCTION) ? CT_FUNCTION_IMPORT : CT_CONST_IMPORT, $token->getContent()));
     }
 }
开发者ID:infinitely-young,项目名称:PHP-CS-Fixer,代码行数:13,代码来源:ImportTransformer.php

示例4: process

 /**
  * {@inheritdoc}
  */
 public function process(Tokens $tokens, Token $token, $index)
 {
     if (!$token->isGivenKind(T_ARRAY)) {
         return;
     }
     $nextIndex = $tokens->getNextMeaningfulToken($index);
     $nextToken = $tokens[$nextIndex];
     if (!$nextToken->equals('(')) {
         $token->override(array(CT_ARRAY_TYPEHINT, $token->getContent()));
     }
 }
开发者ID:cryode,项目名称:PHP-CS-Fixer,代码行数:14,代码来源:ArrayTypehintTransformer.php

示例5: process

 /**
  * {@inheritdoc}
  */
 public function process(Tokens $tokens, Token $token, $index)
 {
     if (!$token->equalsAny(array(array(T_CLASS, 'class'), array(T_STRING, 'class')), false)) {
         return;
     }
     $prevIndex = $tokens->getPrevMeaningfulToken($index);
     $prevToken = $tokens[$prevIndex];
     if ($prevToken->isGivenKind(T_DOUBLE_COLON)) {
         $token->override(array(CT::T_CLASS_CONSTANT, $token->getContent()));
     }
 }
开发者ID:fabpot,项目名称:php-cs-fixer,代码行数:14,代码来源:ClassConstantTransformer.php

示例6: process

 /**
  * {@inheritdoc}
  */
 public function process(Tokens $tokens, Token $token, $index)
 {
     if (!$token->isGivenKind(T_NAMESPACE)) {
         return;
     }
     $nextIndex = $tokens->getNextMeaningfulToken($index);
     $nextToken = $tokens[$nextIndex];
     if ($nextToken->isGivenKind(T_NS_SEPARATOR)) {
         $token->override(array(CT::T_NAMESPACE_OPERATOR, $token->getContent()));
     }
 }
开发者ID:fabpot,项目名称:php-cs-fixer,代码行数:14,代码来源:NamespaceOperatorTransformer.php

示例7: process

 /**
  * {@inheritdoc}
  */
 public function process(Tokens $tokens, Token $token, $index)
 {
     if (!$token->isGivenKind(T_CLASS)) {
         return;
     }
     $prevIndex = $tokens->getPrevMeaningfulToken($index);
     $prevToken = $tokens[$prevIndex];
     if ($prevToken->isGivenKind(T_DOUBLE_COLON)) {
         $token->override(array(CT_CLASS_CONSTANT, $token->getContent()));
     }
 }
开发者ID:infinitely-young,项目名称:PHP-CS-Fixer,代码行数:14,代码来源:ClassConstantTransformer.php

示例8: process

 /**
  * {@inheritdoc}
  */
 public function process(Tokens $tokens, Token $token, $index)
 {
     if (!$token->isComment()) {
         return;
     }
     $content = $token->getContent();
     $trimmedContent = rtrim($content);
     // nothing trimmed, nothing to do
     if ($content === $trimmedContent) {
         return;
     }
     $whitespaces = substr($content, strlen($trimmedContent));
     $token->setContent($trimmedContent);
     if (isset($tokens[$index + 1]) && $tokens[$index + 1]->isWhitespace()) {
         $tokens[$index + 1]->setContent($whitespaces . $tokens[$index + 1]->getContent());
     } else {
         $tokens->insertAt($index + 1, new Token(array(T_WHITESPACE, $whitespaces)));
     }
 }
开发者ID:infinitely-young,项目名称:PHP-CS-Fixer,代码行数:22,代码来源:WhitespacyCommentTransformer.php

示例9: convertToNowdoc

 /**
  * Transforms the heredoc start token to nowdoc notation.
  *
  * @param Token $token
  */
 private function convertToNowdoc(Token $token)
 {
     $token->setContent(preg_replace('/(?<=^<<<)"?(.*?)"?$/', '\'$1\'', $token->getContent()));
 }
开发者ID:infinitely-young,项目名称:PHP-CS-Fixer,代码行数:9,代码来源:HeredocToNowdocFixer.php

示例10: isValidList

 /**
  * Checks variable assignments through `list()` calls for correct docblock usage.
  *
  * @param Tokens $tokens
  * @param Token  $docsToken docs Token
  * @param int    $listIndex index of variable Token
  *
  * @return bool
  */
 private function isValidList(Tokens $tokens, Token $docsToken, $listIndex)
 {
     $endIndex = $tokens->getNextTokenOfKind($listIndex, array(')'));
     $docsContent = $docsToken->getContent();
     for ($index = $listIndex + 1; $index < $endIndex; ++$index) {
         $token = $tokens[$index];
         if ($token->isGivenKind(T_VARIABLE) && false !== strpos($docsContent, $token->getContent())) {
             return true;
         }
     }
     return false;
 }
开发者ID:fabpot,项目名称:php-cs-fixer,代码行数:21,代码来源:PhpdocToCommentFixer.php

示例11: fixWhitespace

 private function fixWhitespace(Token $token)
 {
     if ($token->isWhitespace() && !$token->isWhitespace(" \t")) {
         $token->setContent(rtrim($token->getContent()) . ' ');
     }
 }
开发者ID:GrahamForks,项目名称:PHP-CS-Fixer,代码行数:6,代码来源:NoMultilineWhitespaceAroundDoubleArrowFixer.php

示例12: calculateTrailingWhitespaceIndent

 /**
  * Calculate the trailing whitespace no_tab_indentation.
  *
  * What we're doing here is grabbing everything after the final newline.
  *
  * @param Token $token
  *
  * @return string
  */
 public static function calculateTrailingWhitespaceIndent(Token $token)
 {
     if (!$token->isWhitespace()) {
         throw new \InvalidArgumentException(sprintf('The given token must be whitespace, got "%s".', $token->getName()));
     }
     return ltrim(strrchr(str_replace(array("\r\n", "\r"), "\n", $token->getContent()), 10), "\n");
 }
开发者ID:amiss18,项目名称:PHP-CS-Fixer,代码行数:16,代码来源:Utils.php

示例13: registerFoundToken

 /**
  * Register token as found.
  *
  * @param Token|array|string $token token prototype
  */
 private function registerFoundToken($token)
 {
     $tokenKind = $token instanceof Token ? $token->isArray() ? $token->getId() : $token->getContent() : (is_array($token) ? $token[0] : $token);
     $this->foundTokenKinds[$tokenKind] = true;
 }
开发者ID:GrahamForks,项目名称:PHP-CS-Fixer,代码行数:10,代码来源:Tokens.php

示例14: isValidVariable

 /**
  * Checks variable assignments for correct docblock usage.
  *
  * @param Tokens $tokens
  * @param Token  $docsToken     docs Token
  * @param int    $variableIndex index of variable Token
  *
  * @return bool
  */
 private function isValidVariable(Tokens $tokens, Token $docsToken, $variableIndex)
 {
     $nextIndex = $tokens->getNextMeaningfulToken($variableIndex);
     if (!$tokens[$nextIndex]->equals('=')) {
         return false;
     }
     return false !== strpos($docsToken->getContent(), $tokens[$variableIndex]->getContent());
 }
开发者ID:infinitely-young,项目名称:PHP-CS-Fixer,代码行数:17,代码来源:PhpdocToCommentFixer.php

示例15: removeSpaceAroundToken

 /**
  * Remove spaces from token at a given index.
  *
  * @param Token $token
  */
 private function removeSpaceAroundToken(Token $token)
 {
     if ($token->isWhitespace() && false === strpos($token->getContent(), "\n")) {
         $token->clear();
     }
 }
开发者ID:friendsofphp,项目名称:php-cs-fixer,代码行数:11,代码来源:NoSpacesInsideParenthesisFixer.php


注:本文中的PhpCsFixer\Tokenizer\Token::getContent方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。