DotNotation.php 202 B

1234567891011121314
  1. <?php
  2. /**
  3. * DotNotation example class. Uses DOT_NOTATION pragma.
  4. *
  5. * @extends Mustache
  6. */
  7. class DotNotation extends Mustache {
  8. public $foo = array(
  9. 'bar' => array(
  10. 'baz' => 'Qux',
  11. )
  12. );
  13. }