Skip to content

Commit

Permalink
renamed classes in Extension and TokenParser
Browse files Browse the repository at this point in the history
  • Loading branch information
ornicar authored and fabpot committed Aug 13, 2010
1 parent 9610b33 commit 84261a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Twig/Extensions/Extension/Debug.php
Expand Up @@ -18,7 +18,7 @@ class Twig_Extensions_Extension_Debug extends Twig_Extension
public function getTokenParsers()
{
return array(
new Twig_TokenParser_Debug(),
new Twig_Extensions_TokenParser_Debug(),
);
}

Expand Down
2 changes: 1 addition & 1 deletion Twig/Extensions/TokenParser/Debug.php
Expand Up @@ -27,7 +27,7 @@ public function parse(Twig_Token $token)
}
$this->parser->getStream()->expect(Twig_Token::BLOCK_END_TYPE);

return new Twig_Node_Debug($expr, $lineno, $this->getTag());
return new Twig_Extensions_Node_Debug($expr, $lineno, $this->getTag());
}

/**
Expand Down

0 comments on commit 84261a1

Please sign in to comment.