deprecated Node::toXml()
authorFabien Potencier <fabien.potencier@gmail.com>
Wed, 1 Oct 2014 11:19:23 +0000 (13:19 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Wed, 1 Oct 2014 11:19:23 +0000 (13:19 +0200)
doc/deprecated.rst
lib/Twig/Node.php

index b5155ab..30aaac1 100644 (file)
@@ -80,6 +80,12 @@ Tests
 * The ``sameas`` and ``divisibleby`` tests are deprecated in favor of ``same
   as`` and ``divisible by`` respectively.
 
+Nodes
+-----
+
+* As of Twig 1.x, ``Node::toXml()`` is deprecated and will be removed in Twig
+  2.0.
+
 Interfaces
 ----------
 
index 978e766..085b4d2 100644 (file)
@@ -69,6 +69,9 @@ class Twig_Node implements Twig_NodeInterface
         return implode("\n", $repr);
     }
 
+    /**
+     * @deprecated since 1.16.1 (to be removed in 3.0)
+     */
     public function toXml($asDom = false)
     {
         $dom = new DOMDocument('1.0', 'UTF-8');