DotNotation.php 389 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * DotNotation example class. Uses DOT_NOTATION pragma.
  4. *
  5. * @extends Mustache
  6. */
  7. class DotNotation extends Mustache {
  8. public $person = array(
  9. 'name' => array('first' => 'Chris', 'last' => 'Firescythe'),
  10. 'age' => 24,
  11. 'hobbies' => array('Cycling', 'Fishing'),
  12. 'hometown' => array(
  13. 'city' => 'Cincinnati',
  14. 'state' => 'OH',
  15. ),
  16. );
  17. public $normal = 'Normal';
  18. }