diff options
Diffstat (limited to 'tests/CreatesApplication.php')
-rwxr-xr-x | tests/CreatesApplication.php | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/CreatesApplication.php b/tests/CreatesApplication.php deleted file mode 100755 index 547152f..0000000 --- a/tests/CreatesApplication.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - -namespace Tests; - -use Illuminate\Contracts\Console\Kernel; - -trait CreatesApplication -{ - /** - * Creates the application. - * - * @return \Illuminate\Foundation\Application - */ - public function createApplication() - { - $app = require __DIR__.'/../bootstrap/app.php'; - - $app->make(Kernel::class)->bootstrap(); - - return $app; - } -} |