From 58c7e55ce496dd0dcf3bd8b348d86c3e361a8bb0 Mon Sep 17 00:00:00 2001 From: fabien Date: Fri, 8 Jan 2010 16:12:44 +0000 Subject: [PATCH] added a missing accessor in Twig_Node_Set git-svn-id: http://svn.twig-project.org/trunk@222 93ef8e89-cb99-4229-a87c-7fa0fa45744b --- lib/Twig/Node/Set.php | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/lib/Twig/Node/Set.php b/lib/Twig/Node/Set.php index 144f315..7b1026f 100644 --- a/lib/Twig/Node/Set.php +++ b/lib/Twig/Node/Set.php @@ -101,4 +101,9 @@ class Twig_Node_Set extends Twig_Node implements Twig_NodeListInterface $compiler->raw(";\n"); } + + public function getNames() + { + return $this->names; + } } -- 1.7.2.5