Coding standard cleanup.

This commit is contained in:
Justin Hileman
2012-03-01 05:26:32 -08:00
parent 0034bf657b
commit 5c4fcd0c9a
17 changed files with 59 additions and 48 deletions
@@ -105,7 +105,9 @@ class MustacheInjectionTest extends \PHPUnit_Framework_TestCase {
$tpl = $this->mustache->loadTemplate('{{ a }}');
$data = array(
'a' => function() { return '{{ b }}'; },
'a' => function() {
return '{{ b }}';
},
'b' => '{{ c }}',
'c' => 'FAIL'
);
@@ -117,7 +119,9 @@ class MustacheInjectionTest extends \PHPUnit_Framework_TestCase {
$tpl = $this->mustache->loadTemplate('{{# a }}b{{/ a }}');
$data = array(
'a' => function ($text) { return '{{ ' . $text . ' }}'; },
'a' => function ($text) {
return '{{ ' . $text . ' }}';
},
'b' => '{{ c }}',
'c' => 'FAIL'
);