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


PHP Token::getPrototype方法代码示例

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


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

示例1: equals

 /**
  * Check if token is equals to given one.
  *
  * If tokens are arrays, then only keys defined in parameter token are checked.
  *
  * @param Token|array|string $other         token or it's prototype
  * @param bool               $caseSensitive perform a case sensitive comparison
  *
  * @return bool
  */
 public function equals($other, $caseSensitive = true)
 {
     $otherPrototype = $other instanceof Token ? $other->getPrototype() : $other;
     if ($this->isArray() !== is_array($otherPrototype)) {
         return false;
     }
     if (!$this->isArray()) {
         return $this->content === $otherPrototype;
     }
     $selfPrototype = $this->getPrototype();
     foreach ($otherPrototype as $key => $val) {
         // make sure the token has such key
         if (!isset($selfPrototype[$key])) {
             return false;
         }
         if (1 === $key && !$caseSensitive) {
             // case-insensitive comparison only applies to the content (key 1)
             if (0 !== strcasecmp($val, $selfPrototype[1])) {
                 return false;
             }
         } else {
             // regular comparison
             if ($selfPrototype[$key] !== $val) {
                 return false;
             }
         }
     }
     return true;
 }
开发者ID:shabbirvividads,项目名称:magento2,代码行数:39,代码来源:Token.php

示例2: fromBaseToken

 public static function fromBaseToken(BaseToken $token)
 {
     $extended = new self($token->getPrototype());
     if ($token->isChanged()) {
         $extended->setContent('__CHANGE_HOLDER__' . $token->getContent());
         $extended->setContent($token->getContent());
     }
     return $extended;
 }
开发者ID:boekkooi,项目名称:PHP-CS-Checker,代码行数:9,代码来源:Token.php

示例3: override

 /**
  * Override token.
  *
  * If called on Token inside Tokens collection please use `Tokens::overrideAt` instead.
  *
  * @param Token|array|string $other token prototype
  */
 public function override($other)
 {
     $prototype = $other instanceof self ? $other->getPrototype() : $other;
     if ($this->equals($prototype)) {
         return;
     }
     $this->changed = true;
     if (is_array($prototype)) {
         $this->isArray = true;
         $this->id = $prototype[0];
         $this->content = $prototype[1];
         return;
     }
     $this->isArray = false;
     $this->id = null;
     $this->content = $prototype;
 }
开发者ID:skillberto,项目名称:PHP-CS-Fixer,代码行数:24,代码来源:Token.php


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