Skip to content

Commit

Permalink
refactored node transformers to node visitors
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.twig-project.org/trunk@202 93ef8e89-cb99-4229-a87c-7fa0fa45744b
  • Loading branch information
fabien committed Dec 22, 2009
1 parent 92d96e2 commit 76a3098
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib/Twig/NodeVisitorInterface.php
@@ -0,0 +1,8 @@
<?php

interface Twig_NodeVisitorInterface
{
public function enterNode(Twig_Node $node, Twig_Environment $env);

public function leaveNode(Twig_Node $node, Twig_Environment $env);
}

0 comments on commit 76a3098

Please sign in to comment.