Files
Mustache/examples/dot_notation/DotNotation.php
T

15 lines
202 B
PHP

<?php
/**
* DotNotation example class. Uses DOT_NOTATION pragma.
*
* @extends Mustache
*/
class DotNotation extends Mustache {
public $foo = array(
'bar' => array(
'baz' => 'Qux',
)
);
}