PHP Classes

File: Library/vendor/twig/twig/test/Twig/Tests/Fixtures/macros/default_values.test

Recommend this page to a friend!
  Classes of Duong Huynh Nghia   Lego PHP   Library/vendor/twig/twig/test/Twig/Tests/Fixtures/macros/default_values.test   Download  
File: Library/vendor/twig/twig/test/Twig/Tests/Fixtures/macros/default_values.test
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Lego PHP
Blog and shopping cart system
Author: By
Last change:
Date: 7 years ago
Size: 215 bytes
 

Contents

Class file image Download
--TEST-- macro --TEMPLATE-- {% from _self import test %} {% macro test(a, b = 'bar') -%} {{ a }}{{ b }} {%- endmacro %} {{ test('foo') }} {{ test('bar', 'foo') }} --DATA-- return array(); --EXPECT-- foobar barfoo