From 9f00671cec770e921ed14387acfd5571b8b97e41 Mon Sep 17 00:00:00 2001 From: crynobone Date: Mon, 30 Sep 2013 10:25:09 +0800 Subject: [PATCH] Remove unused local variables Signed-off-by: crynobone --- src/Orchestra/Testbench/TestCase.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Orchestra/Testbench/TestCase.php b/src/Orchestra/Testbench/TestCase.php index c6ea877..c021ea9 100644 --- a/src/Orchestra/Testbench/TestCase.php +++ b/src/Orchestra/Testbench/TestCase.php @@ -150,11 +150,11 @@ public function createApplication() { $app = new Application; - $env = $app->detectEnvironment(array( + $app->detectEnvironment(array( 'local' => array('your-machine-name'), )); - $app->bindInstallPaths($paths = $this->getApplicationPaths()); + $app->bindInstallPaths($this->getApplicationPaths()); $app['env'] = 'testing';