From 6d3eabf9b1fa5fd270dffd8674b4160860abbb32 Mon Sep 17 00:00:00 2001 From: Ben Corlett Date: Fri, 22 Feb 2013 14:49:15 -0500 Subject: [PATCH] Remove tabs / spaces mix. --- app/tests/TestCase.php | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/app/tests/TestCase.php b/app/tests/TestCase.php index 8b1ef7da..c7de5f7a 100644 --- a/app/tests/TestCase.php +++ b/app/tests/TestCase.php @@ -3,17 +3,17 @@ class TestCase extends Illuminate\Foundation\Testing\TestCase { /** - * Creates the application. - * - * @return Symfony\Component\HttpKernel\HttpKernelInterface - */ - public function createApplication() - { - $unitTesting = true; + * Creates the application. + * + * @return Symfony\Component\HttpKernel\HttpKernelInterface + */ + public function createApplication() + { + $unitTesting = true; - $testEnvironment = 'testing'; + $testEnvironment = 'testing'; - return require __DIR__.'/../../bootstrap/start.php'; - } + return require __DIR__.'/../../bootstrap/start.php'; + } }