Browse Source

Remove tabs / spaces mix.

Ben Corlett 11 years ago
parent
commit
6d3eabf9b1
1 changed files with 10 additions and 10 deletions
  1. 10 10
      app/tests/TestCase.php

+ 10 - 10
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';
+	}
 
 }