@@ -7,11 +7,11 @@ |
||
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | 9 | $app = new \Laravel\Lumen\Application( |
| 10 | - __DIR__ . '/../' |
|
| 10 | + __DIR__.'/../' |
|
| 11 | 11 | ); |
| 12 | 12 | |
| 13 | -$app->instance('path.config', app()->basePath() . DIRECTORY_SEPARATOR . 'config'); |
|
| 14 | -$app->instance('path.storage', app()->basePath() . DIRECTORY_SEPARATOR . 'storage'); |
|
| 13 | +$app->instance('path.config', app()->basePath().DIRECTORY_SEPARATOR.'config'); |
|
| 14 | +$app->instance('path.storage', app()->basePath().DIRECTORY_SEPARATOR.'storage'); |
|
| 15 | 15 | |
| 16 | 16 | $app->singleton( |
| 17 | 17 | \Illuminate\Contracts\Http\Kernel::class, |
@@ -6,8 +6,8 @@ |
||
| 6 | 6 | * Time: 4:18 PM |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -require __DIR__ . '/../../../vendor/autoload.php'; |
|
| 9 | +require __DIR__.'/../../../vendor/autoload.php'; |
|
| 10 | 10 | |
| 11 | 11 | $isLumen = class_exists('\Laravel\Lumen\Application'); |
| 12 | 12 | |
| 13 | -return require ($isLumen ? __DIR__ . '/lumen.php' : __DIR__ . '/laravel.php'); |
|
| 14 | 13 | \ No newline at end of file |
| 14 | +return require ($isLumen ? __DIR__.'/lumen.php' : __DIR__.'/laravel.php'); |
|
| 15 | 15 | \ No newline at end of file |
@@ -6,7 +6,7 @@ |
||
| 6 | 6 | * Time: 4:31 PM |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -$file = __DIR__ . '/_output/database.sqlite'; |
|
| 9 | +$file = __DIR__.'/_output/database.sqlite'; |
|
| 10 | 10 | if (!file_exists($file)) { |
| 11 | 11 | file_put_contents($file, ''); |
| 12 | 12 | } |
| 13 | 13 | \ No newline at end of file |