本文整理汇总了PHP中Symfony\CS\Tokenizer\Tokens::getSize方法的典型用法代码示例。如果您正苦于以下问题:PHP Tokens::getSize方法的具体用法?PHP Tokens::getSize怎么用?PHP Tokens::getSize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Symfony\CS\Tokenizer\Tokens
的用法示例。
在下文中一共展示了Tokens::getSize方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: findHeaderCommentInsertionIndex
private function findHeaderCommentInsertionIndex(Tokens $tokens)
{
$index = $tokens->getNextNonWhitespace(0);
if (null === $index) {
$index = $tokens->getSize();
}
return $index;
}
示例2: fix
/**
* {@inheritdoc}
*/
public function fix(\SplFileInfo $file, Tokens $tokens)
{
for ($index = $tokens->getSize() - 1; $index > 0; --$index) {
if (!$tokens[$index]->isClassy()) {
continue;
}
$this->fixClassDefinition($tokens, $index, $tokens->getNextTokenOfKind($index, array('{')));
}
}
示例3: fix
/**
* {@inheritdoc}
*/
public function fix(SplFileInfo $file, Tokens $tokens)
{
$tokensAnalyzer = new TokensAnalyzer($tokens);
for ($index = $tokens->getSize() - 1; $index > 0; --$index) {
if (!$tokens[$index]->isClassy()) {
continue;
}
// figure out where the classy starts
$classStart = $tokens->getNextTokenOfKind($index, array('{'));
// figure out where the classy ends
$classEnd = $tokens->findBlockEnd(Tokens::BLOCK_TYPE_CURLY_BRACE, $classStart);
if ($tokens[$index]->isGivenKind(T_INTERFACE)) {
$this->fixInterface($tokens, $classStart, $classEnd);
} else {
// classes and traits can be fixed the same way
$this->fixClass($tokens, $tokensAnalyzer, $classStart, $classEnd);
}
}
}
示例4: fix
/**
* {@inheritdoc}
*/
public function fix(\SplFileInfo $file, Tokens $tokens)
{
$this->tokens = $tokens;
for ($index = $tokens->getSize() - 1; $index > 0; --$index) {
$this->fixByToken($tokens[$index], $index);
}
}