Skip to content

Commit ddf678e

Browse files
freekmurzegithub-actions[bot]
authored andcommitted
Fix styling
1 parent f25a941 commit ddf678e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Commands/InstallCommand.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ protected function copyServiceProviderInApp(): self
162162

163163
$namespace = Str::replaceLast('\\', '', $this->laravel->getNamespace());
164164

165-
if (intval(app()->version()) < 11 || !file_exists(base_path('bootstrap/providers.php'))) {
165+
if (intval(app()->version()) < 11 || ! file_exists(base_path('bootstrap/providers.php'))) {
166166
$appConfig = file_get_contents(config_path('app.php'));
167167
} else {
168168
$appConfig = file_get_contents(base_path('bootstrap/providers.php'));
@@ -174,7 +174,7 @@ protected function copyServiceProviderInApp(): self
174174
return $this;
175175
}
176176

177-
if (intval(app()->version()) < 11 || !file_exists(base_path('bootstrap/providers.php'))) {
177+
if (intval(app()->version()) < 11 || ! file_exists(base_path('bootstrap/providers.php'))) {
178178
file_put_contents(config_path('app.php'), str_replace(
179179
"{$namespace}\\Providers\\BroadcastServiceProvider::class,",
180180
"{$namespace}\\Providers\\BroadcastServiceProvider::class," . PHP_EOL . " {$namespace}{$class},",

0 commit comments

Comments
 (0)