Update the partials example to be a failing test case for partial indenting.

This commit is contained in:
Justin Hileman
2012-03-14 13:20:30 -07:00
parent 367013f01c
commit fe9fccb441
5 changed files with 23 additions and 11 deletions
+4 -4
View File
@@ -1,9 +1,9 @@
<?php
class Partials {
public $name = 'ilmich';
public $data = array(
array('name' => 'federica', 'age' => 27, 'gender' => 'female'),
array('name' => 'marco', 'age' => 32, 'gender' => 'male'),
public $page = array(
'title' => 'Page Title',
'subtitle' => 'Page Subtitle',
'content' => 'Lorem ipsum dolor sit amet.',
);
}