From 4decec3c0e0b11ff968acfd24a78dd0e2146f962 Mon Sep 17 00:00:00 2001 From: Justin Hileman Date: Mon, 18 Aug 2014 18:33:30 -0700 Subject: [PATCH] =?UTF-8?q?Reformat=20code=20so=20php-cs-fixer=20doesn?= =?UTF-8?q?=E2=80=99t=20keep=20breaking=20it.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/Mustache/Test/Functional/ExamplesTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/Mustache/Test/Functional/ExamplesTest.php b/test/Mustache/Test/Functional/ExamplesTest.php index 1f6fb1b..ffb8361 100644 --- a/test/Mustache/Test/Functional/ExamplesTest.php +++ b/test/Mustache/Test/Functional/ExamplesTest.php @@ -93,7 +93,8 @@ class Mustache_Test_Functional_ExamplesTest extends PHPUnit_Framework_TestCase switch ($info['extension']) { case 'php': require_once $fullpath; - $context = new $info['filename'](); + $className = $info['filename']; + $context = new $className(); break; case 'mustache':