Update to latest php-cs-fixer config.

Update to corresponding style-ci config options. Fix a few code style issues in the process.
This commit is contained in:
Justin Hileman
2015-07-18 07:23:23 -07:00
parent d8da5f1d99
commit 27a8bf0b69
4 changed files with 22 additions and 15 deletions
+2 -2
View File
@@ -317,8 +317,8 @@ class Mustache_Test_EngineTest extends Mustache_Test_FunctionalTestCase
list($name, $mustache) = $this->getLoggedMustache(Mustache_Logger::DEBUG);
$mustache->render('{{ foo }}{{> bar }}', array('foo' => 'FOO'));
$log = file_get_contents($name);
$this->assertContains('DEBUG: Instantiating template: ', $log);
$this->assertContains("WARNING: Partial not found: \"bar\"", $log);
$this->assertContains('DEBUG: Instantiating template: ', $log);
$this->assertContains('WARNING: Partial not found: "bar"', $log);
}
/**