當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Token::isGivenKind方法代碼示例

本文整理匯總了PHP中PhpCsFixer\Tokenizer\Token::isGivenKind方法的典型用法代碼示例。如果您正苦於以下問題:PHP Token::isGivenKind方法的具體用法?PHP Token::isGivenKind怎麽用?PHP Token::isGivenKind使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在PhpCsFixer\Tokenizer\Token的用法示例。


在下文中一共展示了Token::isGivenKind方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: 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

示例2: 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

示例3: 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

示例4: 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

示例5: 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

示例6: fixByToken

 private function fixByToken(Token $token, $index)
 {
     foreach ($this->tokenKindCallbackMap as $kind => $callback) {
         if (!$token->isGivenKind($kind)) {
             continue;
         }
         $this->{$callback}($index);
         return;
     }
     foreach ($this->tokenEqualsMap as $equals => $callback) {
         if (!$token->equals($equals)) {
             continue;
         }
         $this->{$callback}($index);
     }
 }
開發者ID:thekabal,項目名稱:tki,代碼行數:16,代碼來源:NoExtraConsecutiveBlankLinesFixer.php

示例7: transformIntoDynamicPropBraces

 private function transformIntoDynamicPropBraces(Tokens $tokens, Token $token, $index)
 {
     if (!$token->isGivenKind(T_OBJECT_OPERATOR)) {
         return;
     }
     if (!$tokens[$index + 1]->equals('{')) {
         return;
     }
     $openIndex = $index + 1;
     $closeIndex = $tokens->findBlockEnd(Tokens::BLOCK_TYPE_CURLY_BRACE, $openIndex);
     $tokens[$openIndex]->override(array(CT_DYNAMIC_PROP_BRACE_OPEN, '{'));
     $tokens[$closeIndex]->override(array(CT_DYNAMIC_PROP_BRACE_CLOSE, '}'));
 }
開發者ID:infinitely-young,項目名稱:PHP-CS-Fixer,代碼行數:13,代碼來源:CurlyBraceTransformer.php

示例8: isStructuralElement

 /**
  * Check if token is a structural element.
  *
  * @see https://github.com/phpDocumentor/fig-standards/blob/master/proposed/phpdoc.md#3-definitions
  *
  * @param Token $token
  *
  * @return bool
  */
 private function isStructuralElement(Token $token)
 {
     static $skip = array(T_PRIVATE, T_PROTECTED, T_PUBLIC, T_VAR, T_FUNCTION, T_ABSTRACT, T_CONST, T_NAMESPACE, T_REQUIRE, T_REQUIRE_ONCE, T_INCLUDE, T_INCLUDE_ONCE, T_FINAL, T_STATIC);
     return $token->isClassy() || $token->isGivenKind($skip);
 }
開發者ID:fabpot,項目名稱:php-cs-fixer,代碼行數:14,代碼來源:PhpdocToCommentFixer.php

示例9: fixByToken

 private function fixByToken(Token $token, $index)
 {
     foreach ($this->tokenCallbackMap as $kind => $callback) {
         if (!$token->isGivenKind($kind)) {
             continue;
         }
         $callback = $this->tokenCallbackMap[$kind];
         $this->{$callback}($index);
         return;
     }
 }
開發者ID:amiss18,項目名稱:PHP-CS-Fixer,代碼行數:11,代碼來源:NoExtraConsecutiveBlankLinesFixer.php


注:本文中的PhpCsFixer\Tokenizer\Token::isGivenKind方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。