Files
Mustache/test/fixtures/examples/dot_notation/DotNotation.php
T
Justin Hileman 22611a957c CS fixes.
Plus add config for StyleCI.
2015-03-02 21:53:03 -08:00

16 lines
301 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';
}