diff --git a/app/tests/TestCase.php b/app/tests/TestCase.php index 8b1ef7da4..49b80fc27 100644 --- a/app/tests/TestCase.php +++ b/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'; + } }