@@ -107,7 +107,7 @@ public function packageView(?string $namespace): ?string
107
107
108
108
protected function bootPackageAssets (): static
109
109
{
110
- if (!$ this ->package ->hasAssets || !$ this ->app ->runningInConsole ()) {
110
+ if (! $ this ->package ->hasAssets || ! $ this ->app ->runningInConsole ()) {
111
111
return $ this ;
112
112
}
113
113
@@ -132,7 +132,7 @@ protected function bootPackageCommands(): self
132
132
133
133
protected function bootPackageConsoleCommands (): self
134
134
{
135
- if (empty ($ this ->package ->consoleCommands ) || !$ this ->app ->runningInConsole ()) {
135
+ if (empty ($ this ->package ->consoleCommands ) || ! $ this ->app ->runningInConsole ()) {
136
136
return $ this ;
137
137
}
138
138
@@ -157,7 +157,7 @@ protected function bootPackageConfigs(): self
157
157
158
158
protected function bootPackageInertia (): self
159
159
{
160
- if (!$ this ->package ->hasInertiaComponents ) {
160
+ if (! $ this ->package ->hasInertiaComponents ) {
161
161
return $ this ;
162
162
}
163
163
@@ -191,7 +191,7 @@ protected function bootPackageMigrations(): self
191
191
$ appMigration = $ this ->generateMigrationName ($ migrationFileName , $ now ->addSecond ());
192
192
193
193
// Support for the .stub file extension
194
- if (!file_exists ($ vendorMigration )) {
194
+ if (! file_exists ($ vendorMigration )) {
195
195
$ vendorMigration .= '.stub ' ;
196
196
}
197
197
@@ -212,7 +212,7 @@ protected function bootPackageMigrations(): self
212
212
213
213
protected function bootPackageProviders (): self
214
214
{
215
- if (!$ this ->package ->publishableProviderName || !$ this ->app ->runningInConsole ()) {
215
+ if (! $ this ->package ->publishableProviderName || ! $ this ->app ->runningInConsole ()) {
216
216
return $ this ;
217
217
}
218
218
@@ -240,7 +240,7 @@ protected function bootPackageRoutes(): self
240
240
241
241
protected function bootPackageTranslations (): self
242
242
{
243
- if (!$ this ->package ->hasTranslations ) {
243
+ if (! $ this ->package ->hasTranslations ) {
244
244
return $ this ;
245
245
}
246
246
@@ -266,7 +266,7 @@ protected function bootPackageTranslations(): self
266
266
267
267
protected function bootPackageViews (): self
268
268
{
269
- if (!$ this ->package ->hasViews ) {
269
+ if (! $ this ->package ->hasViews ) {
270
270
return $ this ;
271
271
}
272
272
0 commit comments