diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-06-15 15:05:51 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-06-15 19:15:06 +0200 |
commit | 0d0113e6da590c113068a60864d44372a2fbccab (patch) | |
tree | 8930400497c37cf754c29a52e4034e043307967c /phpBB/phpbb/template/twig/tokenparser/includecss.php | |
parent | e6b422517b17d0f3eb9ccf231ae0e4f5459efdf9 (diff) | |
download | forums-0d0113e6da590c113068a60864d44372a2fbccab.tar forums-0d0113e6da590c113068a60864d44372a2fbccab.tar.gz forums-0d0113e6da590c113068a60864d44372a2fbccab.tar.bz2 forums-0d0113e6da590c113068a60864d44372a2fbccab.tar.xz forums-0d0113e6da590c113068a60864d44372a2fbccab.zip |
[ticket/12715] Cleanup comments in \phpbb\template\*
PHPBB3-12715
Diffstat (limited to 'phpBB/phpbb/template/twig/tokenparser/includecss.php')
-rw-r--r-- | phpBB/phpbb/template/twig/tokenparser/includecss.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/phpBB/phpbb/template/twig/tokenparser/includecss.php b/phpBB/phpbb/template/twig/tokenparser/includecss.php index c7d2bb712e..1f30811754 100644 --- a/phpBB/phpbb/template/twig/tokenparser/includecss.php +++ b/phpBB/phpbb/template/twig/tokenparser/includecss.php @@ -16,12 +16,12 @@ namespace phpbb\template\twig\tokenparser; class includecss extends \Twig_TokenParser { /** - * Parses a token and returns a node. - * - * @param Twig_Token $token A Twig_Token instance - * - * @return Twig_NodeInterface A Twig_NodeInterface instance - */ + * Parses a token and returns a node. + * + * @param \Twig_Token $token A Twig_Token instance + * + * @return \Twig_NodeInterface A Twig_NodeInterface instance + */ public function parse(\Twig_Token $token) { $expr = $this->parser->getExpressionParser()->parseExpression(); @@ -33,10 +33,10 @@ class includecss extends \Twig_TokenParser } /** - * Gets the tag name associated with this token parser. - * - * @return string The tag name - */ + * Gets the tag name associated with this token parser. + * + * @return string The tag name + */ public function getTag() { return 'INCLUDECSS'; |