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


PHP Token::setContent方法代碼示例

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


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

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

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

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

示例4: 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:amiss18,項目名稱:PHP-CS-Fixer,代碼行數:11,代碼來源:UnalignEqualsFixer.php

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

示例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:cryode,項目名稱:PHP-CS-Fixer,代碼行數:16,代碼來源:TokenTest.php


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