13 lines
199 B
PHP
13 lines
199 B
PHP
<?php
|
|
|
|
class ChildContext extends Mustache {
|
|
public $parent = array(
|
|
'child' => 'child works',
|
|
);
|
|
|
|
public $grandparent = array(
|
|
'parent' => array(
|
|
'child' => 'grandchild works',
|
|
),
|
|
);
|
|
} |