From 1e71b527573194a463f7d2979a28450dc5e7ca17 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sat, 5 Jul 2014 14:03:33 +0200 Subject: [PATCH] fixed some deprecation notices --- lib/Twig/CompilerInterface.php | 3 ++- lib/Twig/ExistsLoaderInterface.php | 3 ++- lib/Twig/LexerInterface.php | 3 ++- lib/Twig/NodeInterface.php | 3 ++- lib/Twig/ParserInterface.php | 3 ++- lib/Twig/TemplateInterface.php | 3 ++- 6 files changed, 12 insertions(+), 6 deletions(-) diff --git a/lib/Twig/CompilerInterface.php b/lib/Twig/CompilerInterface.php index e293ec9..272c767 100644 --- a/lib/Twig/CompilerInterface.php +++ b/lib/Twig/CompilerInterface.php @@ -13,7 +13,8 @@ * Interface implemented by compiler classes. * * @author Fabien Potencier - * @deprecated since 1.12 (to be removed in 2.0) + * + * @deprecated since 1.12 (to be removed in 3.0) */ interface Twig_CompilerInterface { diff --git a/lib/Twig/ExistsLoaderInterface.php b/lib/Twig/ExistsLoaderInterface.php index de4dff7..48df9e1 100644 --- a/lib/Twig/ExistsLoaderInterface.php +++ b/lib/Twig/ExistsLoaderInterface.php @@ -13,7 +13,8 @@ * Adds an exists() method for loaders. * * @author Florin Patan - * @deprecated since 1.12 (to be removed in 2.0) + * + * @deprecated since 1.12 (to be removed in 3.0) */ interface Twig_ExistsLoaderInterface { diff --git a/lib/Twig/LexerInterface.php b/lib/Twig/LexerInterface.php index dd51cae..24a9478 100644 --- a/lib/Twig/LexerInterface.php +++ b/lib/Twig/LexerInterface.php @@ -13,7 +13,8 @@ * Interface implemented by lexer classes. * * @author Fabien Potencier - * @deprecated since 1.12 (to be removed in 2.0) + * + * @deprecated since 1.12 (to be removed in 3.0) */ interface Twig_LexerInterface { diff --git a/lib/Twig/NodeInterface.php b/lib/Twig/NodeInterface.php index f0ef725..43afd0d 100644 --- a/lib/Twig/NodeInterface.php +++ b/lib/Twig/NodeInterface.php @@ -13,7 +13,8 @@ * Represents a node in the AST. * * @author Fabien Potencier - * @deprecated since 1.12 (to be removed in 2.0) + * + * @deprecated since 1.12 (to be removed in 3.0) */ interface Twig_NodeInterface extends Countable, IteratorAggregate { diff --git a/lib/Twig/ParserInterface.php b/lib/Twig/ParserInterface.php index bfe60a3..8e7cc0a 100644 --- a/lib/Twig/ParserInterface.php +++ b/lib/Twig/ParserInterface.php @@ -13,7 +13,8 @@ * Interface implemented by parser classes. * * @author Fabien Potencier - * @deprecated since 1.12 (to be removed in 2.0) + * + * @deprecated since 1.12 (to be removed in 3.0) */ interface Twig_ParserInterface { diff --git a/lib/Twig/TemplateInterface.php b/lib/Twig/TemplateInterface.php index 879f503..d178832 100644 --- a/lib/Twig/TemplateInterface.php +++ b/lib/Twig/TemplateInterface.php @@ -13,7 +13,8 @@ * Interface implemented by all compiled templates. * * @author Fabien Potencier - * @deprecated since 1.12 (to be removed in 2.0) + * + * @deprecated since 1.12 (to be removed in 3.0) */ interface Twig_TemplateInterface { -- 1.7.2.5