develop
|
Last change
on this file since c6fe0df was 2fc88ec, checked in by beratkjufliju <kufliju@…>, 4 years ago |
|
initial commit
|
-
Property mode
set to
100644
|
|
File size:
380 bytes
|
| Rev | Line | |
|---|
| [2fc88ec] | 1 | <?php
|
|---|
| 2 |
|
|---|
| 3 | namespace Tests;
|
|---|
| 4 |
|
|---|
| 5 | use Illuminate\Contracts\Console\Kernel;
|
|---|
| 6 |
|
|---|
| 7 | trait CreatesApplication
|
|---|
| 8 | {
|
|---|
| 9 | /**
|
|---|
| 10 | * Creates the application.
|
|---|
| 11 | *
|
|---|
| 12 | * @return \Illuminate\Foundation\Application
|
|---|
| 13 | */
|
|---|
| 14 | public function createApplication()
|
|---|
| 15 | {
|
|---|
| 16 | $app = require __DIR__.'/../bootstrap/app.php';
|
|---|
| 17 |
|
|---|
| 18 | $app->make(Kernel::class)->bootstrap();
|
|---|
| 19 |
|
|---|
| 20 | return $app;
|
|---|
| 21 | }
|
|---|
| 22 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.