From fa8e07f7541f7822a3c45878cf3dc910b2415712 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 6 Mar 2019 18:18:49 +0100 Subject: [PATCH] fixed more un-namespaced classes --- src/Environment.php | 6 +++--- src/TokenParser/TokenParserInterface.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Environment.php b/src/Environment.php index 8974890612e..11aaf8299a6 100644 --- a/src/Environment.php +++ b/src/Environment.php @@ -786,7 +786,7 @@ public function addFilter(TwigFilter $filter) * * @param string $name The filter name * - * @return TwigFilter|false A \Twig_Filter instance or false if the filter does not exist + * @return TwigFilter|false * * @internal */ @@ -838,7 +838,7 @@ public function getTests() * * @param string $name The test name * - * @return TwigTest|false A \Twig_Test instance or false if the test does not exist + * @return TwigTest|false * * @internal */ @@ -860,7 +860,7 @@ public function addFunction(TwigFunction $function) * * @param string $name function name * - * @return TwigFunction|false A \Twig_Function instance or false if the function does not exist + * @return TwigFunction|false * * @internal */ diff --git a/src/TokenParser/TokenParserInterface.php b/src/TokenParser/TokenParserInterface.php index a4f44b701ff..44096950502 100644 --- a/src/TokenParser/TokenParserInterface.php +++ b/src/TokenParser/TokenParserInterface.php @@ -31,7 +31,7 @@ public function setParser(Parser $parser); /** * Parses a token and returns a node. * - * @return Node A \Twig_Node instance + * @return Node * * @throws SyntaxError */