PHP Classes

File: libs/Twig/test/Twig/Tests/Fixtures/expressions/operators_as_variables.test

Recommend this page to a friend!
  Classes of william amed   Raptor 2   libs/Twig/test/Twig/Tests/Fixtures/expressions/operators_as_variables.test   Download  
File: libs/Twig/test/Twig/Tests/Fixtures/expressions/operators_as_variables.test
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Raptor 2
Framework that takes routes from annotations
Author: By
Last change:
Date: 8 years ago
Size: 252 bytes
 

Contents

Class file image Download
--TEST-- Twig allows to use named operators as variable names --TEMPLATE-- {% for match in matches %} {{- match }} {% endfor %} {{ in }} {{ is }} --DATA-- return array('matches' => array(1, 2, 3), 'in' => 'in', 'is' => 'is') --EXPECT-- 1 2 3 in is