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


PHP Token::setContent方法代码示例

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


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

示例1: fixWhitespace

 private function fixWhitespace(Token $token)
 {
     $content = $token->getContent();
     if (substr_count($content, "\n") > 1) {
         $lines = Utils::splitLines($content);
         $token->setContent("\n" . end($lines));
     }
 }
开发者ID:Ryu0621,项目名称:SaNaVi,代码行数:8,代码来源:NoEmptyLinesAfterPhpdocsFixer.php

示例2: setContent

 public function setContent($content)
 {
     $currentContent = $this->getContent();
     parent::setContent($content);
     if ($currentContent !== $content) {
         $this->messages = array();
     }
 }
开发者ID:boekkooi,项目名称:PHP-CS-Checker,代码行数:8,代码来源:Token.php

示例3: 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:rafwlaz,项目名称:PHP-CS-Fixer,代码行数:15,代码来源:NoBlankLinesAfterClassOpeningFixer.php

示例4: 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]->isGivenKind(T_WHITESPACE)) {
         $tokens[$index + 1]->setContent($whitespaces . $tokens[$index + 1]->getContent());
     } else {
         $tokens->insertAt($index + 1, new Token(array(T_WHITESPACE, $whitespaces)));
     }
 }
开发者ID:rafwlaz,项目名称:PHP-CS-Fixer,代码行数:22,代码来源:WhitespacyCommentTransformer.php

示例5: fixWhitespace

 private function fixWhitespace(Token $token)
 {
     if ($token->isWhitespace(array('whitespaces' => " \t"))) {
         $token->setContent(' ');
     }
 }
开发者ID:Ryu0621,项目名称:SaNaVi,代码行数:6,代码来源:UnalignDoubleArrowFixer.php

示例6: testIsEmpty

 public function testIsEmpty()
 {
     $braceToken = $this->getBraceToken();
     $this->assertFalse($braceToken->isEmpty());
     $braceToken->setContent('');
     $this->assertTrue($braceToken->isEmpty());
     $whitespaceToken = new Token(array(T_WHITESPACE, ' '));
     $this->assertFalse($whitespaceToken->isEmpty());
     $whitespaceToken->setContent('');
     $this->assertTrue($whitespaceToken->isEmpty());
     $whitespaceToken->override(array(null, ''));
     $this->assertTrue($whitespaceToken->isEmpty());
     $whitespaceToken = new Token(array(T_WHITESPACE, ' '));
     $whitespaceToken->clear();
     $this->assertTrue($whitespaceToken->isEmpty());
 }
开发者ID:mrbadao,项目名称:magento-ce,代码行数:16,代码来源:TokenTest.php

示例7: fixWhitespace

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

示例8: 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:athaller,项目名称:PHP-CS-Fixer,代码行数:9,代码来源:HeredocToNowdocFixer.php

示例9: fixWhitespace

 /**
  * If given token is a single line whitespace then fix it to be a single space.
  *
  * @param Token $token
  */
 private function fixWhitespace(Token $token)
 {
     if ($token->isWhitespace(" \t")) {
         $token->setContent(' ');
     }
 }
开发者ID:skillberto,项目名称:PHP-CS-Fixer,代码行数:11,代码来源:UnalignDoubleArrowFixer.php


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