Security update for Core, with self-updated composer
[yaffs-website] / vendor / twig / twig / doc / advanced.rst
index d86db501e52514bc6e5892b4fb79063ec376043e..fadc947bb0d0d1d21609772c55e0d798eb93e7eb 100644 (file)
@@ -800,7 +800,7 @@ The simplest way to use methods is to define them on the extension itself::
 
         public function rot13($value)
         {
-            return $rot13Provider->rot13($value);
+            return $this->rot13Provider->rot13($value);
         }
     }
 
@@ -849,7 +849,7 @@ It is now possible to move the runtime logic to a new
 
         public function rot13($value)
         {
-            return $rot13Provider->rot13($value);
+            return $this->rot13Provider->rot13($value);
         }
     }