Merge pull request #1738 from bencorlett/patch-1

Remove tabs / spaces mix.
This commit is contained in:
Taylor Otwell
2013-03-28 14:06:13 -07:00

View File

@@ -2,18 +2,18 @@
class TestCase extends Illuminate\Foundation\Testing\TestCase { class TestCase extends Illuminate\Foundation\Testing\TestCase {
/** /**
* Creates the application. * Creates the application.
* *
* @return Symfony\Component\HttpKernel\HttpKernelInterface * @return Symfony\Component\HttpKernel\HttpKernelInterface
*/ */
public function createApplication() public function createApplication()
{ {
$unitTesting = true; $unitTesting = true;
$testEnvironment = 'testing'; $testEnvironment = 'testing';
return require __DIR__.'/../../bootstrap/start.php'; return require __DIR__.'/../../bootstrap/start.php';
} }
} }