Skip to content

Commit 9c33a67

Browse files
authored
Merge pull request #9 from rgasch/dev
fixed missing semicolon
2 parents bdf78e1 + 2d52120 commit 9c33a67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

InstallLaravel.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ function patchAppServiceProviderForStrictMode(string $color, string $noColor): v
523523
$line = $fileLines[$i];
524524
$output[] = $line;
525525
if (!$firstUse && strpos($line, 'use ') === 0) {
526-
$output[] = 'use Illuminate\Database\Connection';
526+
$output[] = 'use Illuminate\Database\Connection;';
527527
$output[] = 'use Illuminate\Database\Eloquent\Model;';
528528
$output[] = 'use Illuminate\Contracts\Http\Kernel as HttpKernel;';
529529
$output[] = 'use Illuminate\Contracts\Console\Kernel as ConsoleKernel;';

0 commit comments

Comments
 (0)