updated email address
authorFabien Potencier <fabien.potencier@gmail.com>
Fri, 29 Apr 2011 15:18:51 +0000 (17:18 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Fri, 29 Apr 2011 15:18:51 +0000 (17:18 +0200)
64 files changed:
lib/Twig/Autoloader.php
lib/Twig/Compiler.php
lib/Twig/CompilerInterface.php
lib/Twig/Environment.php
lib/Twig/Error.php
lib/Twig/Error/Loader.php
lib/Twig/Error/Runtime.php
lib/Twig/Error/Syntax.php
lib/Twig/ExpressionParser.php
lib/Twig/ExtensionInterface.php
lib/Twig/Filter.php
lib/Twig/Filter/Function.php
lib/Twig/Filter/Method.php
lib/Twig/FilterInterface.php
lib/Twig/Function.php
lib/Twig/Lexer.php
lib/Twig/LexerInterface.php
lib/Twig/Loader/Array.php
lib/Twig/Loader/Filesystem.php
lib/Twig/Loader/String.php
lib/Twig/LoaderInterface.php
lib/Twig/Markup.php
lib/Twig/Node.php
lib/Twig/Node/AutoEscape.php
lib/Twig/Node/Block.php
lib/Twig/Node/BlockReference.php
lib/Twig/Node/Expression.php
lib/Twig/Node/Expression/BlockReference.php
lib/Twig/Node/Expression/ExtensionReference.php
lib/Twig/Node/Expression/Parent.php
lib/Twig/Node/For.php
lib/Twig/Node/If.php
lib/Twig/Node/Import.php
lib/Twig/Node/Include.php
lib/Twig/Node/Macro.php
lib/Twig/Node/Module.php
lib/Twig/Node/Print.php
lib/Twig/Node/Sandbox.php
lib/Twig/Node/SandboxedModule.php
lib/Twig/Node/SandboxedPrint.php
lib/Twig/Node/Set.php
lib/Twig/Node/Spaceless.php
lib/Twig/Node/Text.php
lib/Twig/NodeInterface.php
lib/Twig/NodeOutputInterface.php
lib/Twig/NodeTraverser.php
lib/Twig/NodeVisitor/Escaper.php
lib/Twig/NodeVisitor/Optimizer.php
lib/Twig/NodeVisitor/Sandbox.php
lib/Twig/NodeVisitorInterface.php
lib/Twig/Parser.php
lib/Twig/ParserInterface.php
lib/Twig/Sandbox/SecurityError.php
lib/Twig/Sandbox/SecurityPolicy.php
lib/Twig/Sandbox/SecurityPolicyInterface.php
lib/Twig/Template.php
lib/Twig/TemplateInterface.php
lib/Twig/Test/Function.php
lib/Twig/Test/Method.php
lib/Twig/TestInterface.php
lib/Twig/Token.php
lib/Twig/TokenParser.php
lib/Twig/TokenParserInterface.php
lib/Twig/TokenStream.php

index 4d1f6e1..3315e23 100644 (file)
@@ -13,7 +13,7 @@
  * Autoloads Twig classes.
  *
  * @package twig
- * @author  Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author  Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Autoloader
 {
index e103f4a..cae9f14 100644 (file)
@@ -14,7 +14,7 @@
  * Compiles a node to PHP code.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Compiler implements Twig_CompilerInterface
 {
index cc9a03c..0a13edf 100644 (file)
@@ -13,7 +13,7 @@
  * Interface implemented by compiler classes.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 interface Twig_CompilerInterface
 {
index 2c4d1c6..6209474 100644 (file)
@@ -13,7 +13,7 @@
  * Stores the Twig configuration.
  *
  * @package twig
- * @author  Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author  Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Environment
 {
index 61dda79..5e6974a 100644 (file)
@@ -13,7 +13,7 @@
  * Twig base exception.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Error extends Exception
 {
index facaf2d..418a776 100644 (file)
@@ -13,7 +13,7 @@
  * Exception thrown when an error occurs during template loading.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Error_Loader extends Twig_Error
 {
index 262f8f0..8a387fa 100644 (file)
@@ -14,7 +14,7 @@
  * Exception thrown when an error occurs at runtime.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Error_Runtime extends Twig_Error
 {
index 730c75f..a2650c3 100644 (file)
@@ -14,7 +14,7 @@
  * Exception thrown when a syntax error occurs during lexing or parsing of a template.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Error_Syntax extends Twig_Error
 {
index b355f08..2be47fb 100644 (file)
@@ -19,7 +19,7 @@
  * @see http://en.wikipedia.org/wiki/Operator-precedence_parser
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_ExpressionParser
 {
index af8d93e..f8b232a 100644 (file)
@@ -13,7 +13,7 @@
  * Interface implemented by extension classes.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 interface Twig_ExtensionInterface
 {
index 3484df2..9595a1a 100644 (file)
@@ -13,7 +13,7 @@
  * Represents a template filter.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 abstract class Twig_Filter implements Twig_FilterInterface
 {
index 9950332..1de078b 100644 (file)
@@ -13,7 +13,7 @@
  * Represents a function template filter.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Filter_Function extends Twig_Filter
 {
index aa7f041..d831e0f 100644 (file)
@@ -13,7 +13,7 @@
  * Represents a method template filter.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Filter_Method extends Twig_Filter
 {
index 8320517..4ac19ce 100644 (file)
@@ -13,7 +13,7 @@
  * Represents a template filter.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 interface Twig_FilterInterface
 {
index 99e9b77..1197924 100644 (file)
@@ -13,7 +13,7 @@
  * Represents a template function.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 abstract class Twig_Function implements Twig_FunctionInterface
 {
index b5bb824..b82ca08 100644 (file)
@@ -14,7 +14,7 @@
  * Lexes a template string.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Lexer implements Twig_LexerInterface
 {
index 58fee31..0223384 100644 (file)
@@ -13,7 +13,7 @@
  * Interface implemented by lexer classes.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 interface Twig_LexerInterface
 {
index 4fbe8b9..35263dd 100644 (file)
@@ -18,7 +18,7 @@
  * control, you need to take care of clearing the old cache file by yourself.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Loader_Array implements Twig_LoaderInterface
 {
index 612979c..b4a3887 100644 (file)
@@ -13,7 +13,7 @@
  * Loads template from the filesystem.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Loader_Filesystem implements Twig_LoaderInterface
 {
index 0593a72..26eb009 100644 (file)
@@ -18,7 +18,7 @@
  * control, you need to take care of clearing the old cache file by yourself.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Loader_String implements Twig_LoaderInterface
 {
index ef4adc4..f0bd3a5 100644 (file)
@@ -13,7 +13,7 @@
  * Interface all loaders must implement.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 interface Twig_LoaderInterface
 {
index 9a4d1df..c1a1469 100644 (file)
@@ -13,7 +13,7 @@
  * Marks a content as safe.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Markup
 {
index 3274b59..22e65d4 100644 (file)
@@ -14,7 +14,7 @@
  * Represents a node in the AST.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Node implements Twig_NodeInterface, Countable, IteratorAggregate
 {
index 42816ac..a0c2ee6 100644 (file)
@@ -19,7 +19,7 @@
  * If autoescaping is disabled, then the value is false.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Node_AutoEscape extends Twig_Node
 {
index 7bdb9b9..5548ad0 100644 (file)
@@ -14,7 +14,7 @@
  * Represents a block node.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Node_Block extends Twig_Node
 {
index 42a62be..53f6287 100644 (file)
@@ -14,7 +14,7 @@
  * Represents a block call node.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Node_BlockReference extends Twig_Node implements Twig_NodeOutputInterface
 {
index 2171831..13b170e 100644 (file)
@@ -14,7 +14,7 @@
  * Abstract class for all nodes that represents an expression.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 abstract class Twig_Node_Expression extends Twig_Node
 {
index 592e72e..1dc0a68 100644 (file)
@@ -14,7 +14,7 @@
  * Represents a block call node.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Node_Expression_BlockReference extends Twig_Node_Expression
 {
index ba5d58e..cb4efad 100644 (file)
@@ -13,7 +13,7 @@
  * Represents an extension call node.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Node_Expression_ExtensionReference extends Twig_Node_Expression
 {
index 7be682d..5689fe4 100644 (file)
@@ -14,7 +14,7 @@
  * Represents a parent node.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Node_Expression_Parent extends Twig_Node_Expression
 {
index d565236..60be15e 100644 (file)
@@ -14,7 +14,7 @@
  * Represents a for node.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Node_For extends Twig_Node
 {
index b222222..aa12efb 100644 (file)
@@ -14,7 +14,7 @@
  * Represents an if node.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Node_If extends Twig_Node
 {
index 348dd97..a327411 100644 (file)
@@ -13,7 +13,7 @@
  * Represents an import node.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Node_Import extends Twig_Node
 {
index 75ec6cc..33a4007 100644 (file)
@@ -14,7 +14,7 @@
  * Represents an include node.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Node_Include extends Twig_Node implements Twig_NodeOutputInterface
 {
index 2bfe16f..d77bc47 100644 (file)
@@ -13,7 +13,7 @@
  * Represents a macro node.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Node_Macro extends Twig_Node
 {
index a3cc0be..808cf6b 100644 (file)
@@ -14,7 +14,7 @@
  * Represents a module node.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Node_Module extends Twig_Node
 {
index 49047c9..766725f 100644 (file)
@@ -14,7 +14,7 @@
  * Represents a node that outputs an expression.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Node_Print extends Twig_Node implements Twig_NodeOutputInterface
 {
index 0a513c0..cbfcb41 100644 (file)
@@ -13,7 +13,7 @@
  * Represents a sandbox node.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Node_Sandbox extends Twig_Node
 {
index a797cf4..36d9f19 100644 (file)
@@ -14,7 +14,7 @@
  * Represents a module node.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Node_SandboxedModule extends Twig_Node_Module
 {
index fe374a7..77730d8 100644 (file)
@@ -18,7 +18,7 @@
  * method is allowed if 'article' is an object.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Node_SandboxedPrint extends Twig_Node_Print
 {
index 9dae2ea..8a46eec 100644 (file)
@@ -13,7 +13,7 @@
  * Represents a set node.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Node_Set extends Twig_Node
 {
index 8c6300d..4601346 100644 (file)
@@ -15,7 +15,7 @@
  * It removes spaces between HTML tags.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Node_Spaceless extends Twig_Node
 {
index 7812bc2..0c1c092 100644 (file)
@@ -14,7 +14,7 @@
  * Represents a text node.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Node_Text extends Twig_Node implements Twig_NodeOutputInterface
 {
index 5e17b77..165aed4 100644 (file)
@@ -13,7 +13,7 @@
  * Represents a node in the AST.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 interface Twig_NodeInterface
 {
index a75154c..7183956 100644 (file)
@@ -13,7 +13,7 @@
  * Represents a displayable node in the AST.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 interface Twig_NodeOutputInterface
 {
index 737934c..1e82b03 100644 (file)
@@ -15,7 +15,7 @@
  * It visits all nodes and their children and call the given visitor for each.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_NodeTraverser
 {
index 468f97a..049ce96 100644 (file)
@@ -13,7 +13,7 @@
  * Twig_NodeVisitor_Escaper implements output escaping.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_NodeVisitor_Escaper implements Twig_NodeVisitorInterface
 {
index a683f4a..d89ceb7 100644 (file)
@@ -18,7 +18,7 @@
  * optimizer mode.
  *
  * @package twig
- * @author  Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author  Fabien Potencier <fabien@symfony.com>
  */
 class Twig_NodeVisitor_Optimizer implements Twig_NodeVisitorInterface
 {
index d910673..e9e1e1a 100644 (file)
@@ -13,7 +13,7 @@
  * Twig_NodeVisitor_Sandbox implements sandboxing.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_NodeVisitor_Sandbox implements Twig_NodeVisitorInterface
 {
index c73aca5..d44e510 100644 (file)
@@ -13,7 +13,7 @@
  * Twig_NodeVisitorInterface is the interface the all node visitor classes must implement.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 interface Twig_NodeVisitorInterface
 {
index c433ab6..f22ad09 100644 (file)
@@ -14,7 +14,7 @@
  * Default parser implementation.
  *
  * @package twig
- * @author  Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author  Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Parser implements Twig_ParserInterface
 {
index 30cabc0..c7a3441 100644 (file)
@@ -13,7 +13,7 @@
  * Interface implemented by parser classes.
  *
  * @package twig
- * @author  Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author  Fabien Potencier <fabien@symfony.com>
  */
 interface Twig_ParserInterface
 {
index 1fac69f..debabb7 100644 (file)
@@ -13,7 +13,7 @@
  * Exception thrown when a security error occurs at runtime.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Sandbox_SecurityError extends Twig_Error
 {
index 0d9a1a8..0fd2c0b 100644 (file)
@@ -13,7 +13,7 @@
  * Represents a security policy which need to be enforced when sandbox mode is enabled.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Sandbox_SecurityPolicy implements Twig_Sandbox_SecurityPolicyInterface
 {
index 2a771c4..d5015af 100644 (file)
@@ -13,7 +13,7 @@
  * Interfaces that all security policy classes must implements.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 interface Twig_Sandbox_SecurityPolicyInterface
 {
index 5a987d7..42387eb 100644 (file)
@@ -14,7 +14,7 @@
  * Default base class for compiled templates.
  *
  * @package twig
- * @author  Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author  Fabien Potencier <fabien@symfony.com>
  */
 abstract class Twig_Template implements Twig_TemplateInterface
 {
index e5fb8f6..08da116 100644 (file)
@@ -13,7 +13,7 @@
  * Interface implemented by all compiled templates.
  *
  * @package twig
- * @author  Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author  Fabien Potencier <fabien@symfony.com>
  */
 interface Twig_TemplateInterface
 {
index 81750b6..1240a0f 100644 (file)
@@ -13,7 +13,7 @@
  * Represents a function template test.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Test_Function implements Twig_TestInterface
 {
index ea6a44c..a3b3948 100644 (file)
@@ -13,7 +13,7 @@
  * Represents a method template test.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Test_Method implements Twig_TestInterface
 {
index 691ba14..c2ff725 100644 (file)
@@ -13,7 +13,7 @@
  * Represents a template test.
  *
  * @package    twig
- * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author     Fabien Potencier <fabien@symfony.com>
  */
 interface Twig_TestInterface
 {
index c5fc156..79a1003 100644 (file)
@@ -14,7 +14,7 @@
  * Represents a Token.
  *
  * @package twig
- * @author  Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author  Fabien Potencier <fabien@symfony.com>
  */
 class Twig_Token
 {
index 4245a08..6c9e693 100644 (file)
@@ -13,7 +13,7 @@
  * Base class for all token parsers.
  *
  * @package twig
- * @author  Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author  Fabien Potencier <fabien@symfony.com>
  */
 abstract class Twig_TokenParser implements Twig_TokenParserInterface
 {
index 142adec..114a939 100644 (file)
@@ -13,7 +13,7 @@
  * Interface implemented by token parsers.
  *
  * @package twig
- * @author  Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author  Fabien Potencier <fabien@symfony.com>
  */
 interface Twig_TokenParserInterface
 {
index 68fe09a..c5eb912 100644 (file)
@@ -14,7 +14,7 @@
  * Represents a token stream.
  *
  * @package twig
- * @author  Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @author  Fabien Potencier <fabien@symfony.com>
  */
 class Twig_TokenStream
 {