Example for dot notation pragma.

This commit is contained in:
Justin Hileman
2010-04-23 13:46:39 -04:00
parent db4ff1058d
commit d2ff6fa1ac
3 changed files with 16 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
/**
* DotNotation example class. Uses DOT_NOTATION pragma.
*
* @extends Mustache
*/
class DotNotation extends Mustache {
public $foo = array(
'bar' => array(
'baz' => 'Qux',
)
);
}