Files
Mustache/examples/child_context/ChildContext.php
T

14 lines
182 B
PHP

<?php
class ChildContext {
public $parent = array(
'child' => 'child works',
);
public $grandparent = array(
'parent' => array(
'child' => 'grandchild works',
),
);
}