Files
Mustache/test/fixtures/examples/dot_notation/DotNotation.php
T

15 lines
240 B
PHP

<?php
class DotNotation {
public $person = array(
'name' => array('first' => 'Chris', 'last' => 'Firescythe'),
'age' => 24,
'hometown' => array(
'city' => 'Cincinnati',
'state' => 'OH',
)
);
public $normal = 'Normal';
}