Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix InstallCommand.php #55

Merged
merged 3 commits into from
Sep 8, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix InstallCommand.php
  • Loading branch information
dleicam committed Sep 4, 2020
commit 9dacb8487940d5c36cbcb9cc2e86383a1a5ad705
2 changes: 1 addition & 1 deletion src/Console/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ protected function installJetstreamServiceProvider()
if (! Str::contains($appConfig = file_get_contents(config_path('app.php')), 'App\\Providers\\JetstreamServiceProvider::class')) {
file_put_contents(config_path('app.php'), str_replace(
"App\\Providers\FortifyServiceProvider::class,",
"App\\Providers\FortifyServiceProvider::class,".PHP_EOL." App\Providers\JetstreamServiceProvider::class,".PHP_EOL,
"App\\Providers\FortifyServiceProvider::class,".PHP_EOL." App\Providers\JetstreamServiceProvider::class,",
$appConfig
));
}
Expand Down