當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。