ChildContext.php 199 B

12345678910111213
  1. <?php
  2. class ChildContext extends Mustache {
  3. public $parent = array(
  4. 'child' => 'child works',
  5. );
  6. public $grandparent = array(
  7. 'parent' => array(
  8. 'child' => 'grandchild works',
  9. ),
  10. );
  11. }