Skip to content

Commit 2d52120

Browse files
committed
fixed missing semicolon
1 parent 304dedd commit 2d52120

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)