Browse Source

Merge pull request #1738 from bencorlett/patch-1

Remove tabs / spaces mix.
Taylor Otwell 11 years ago
parent
commit
675157ea24
1 changed files with 11 additions and 11 deletions
  1. 11 11
      app/tests/TestCase.php

+ 11 - 11
app/tests/TestCase.php

@@ -2,18 +2,18 @@
 
 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';
+	}
 
 }