ChildContext.php 221 B

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