From: Fabien Potencier Date: Mon, 10 Dec 2012 13:58:56 +0000 (+0100) Subject: added Twig_TemplateInterface in the list of deprecated interfaces X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=83c7fc643278acdc249fbdc17ff5c80be73b5d7c;p=konrad%2Ftwig.git added Twig_TemplateInterface in the list of deprecated interfaces --- diff --git a/doc/deprecated.rst b/doc/deprecated.rst index e7d0d37..1933d36 100644 --- a/doc/deprecated.rst +++ b/doc/deprecated.rst @@ -32,9 +32,9 @@ Interfaces * As of Twig 2.x, the following interfaces are deprecated and empty (they will be removed in Twig 3.0): -* ``Twig_CompilerInterface`` -* ``Twig_LexerInterface`` -* ``Twig_NodeInterface`` -* ``Twig_ParserInterface`` -* ``Twig_TokenParserInterface`` +* ``Twig_CompilerInterface`` (use ``Twig_Compiler`` instead) +* ``Twig_LexerInterface`` (use ``Twig_Lexer`` instead) +* ``Twig_NodeInterface`` (use ``Twig_Node`` instead) +* ``Twig_ParserInterface`` (use ``Twig_Parser`` instead) * ``Twig_ExistsLoaderInterface`` (merged with ``Twig_LoaderInterface``) +* ``Twig_TemplateInterface`` (use ``Twig_Template`` instead)