Skip to content

Commit ba67eee

Browse files
freekmurzegithub-actions[bot]
authored andcommitted
Fix styling
1 parent 49953de commit ba67eee

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/PackageServiceProvider.php

+7-7
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public function packageView(?string $namespace): ?string
107107

108108
protected function bootPackageAssets(): static
109109
{
110-
if (!$this->package->hasAssets || !$this->app->runningInConsole()) {
110+
if (! $this->package->hasAssets || ! $this->app->runningInConsole()) {
111111
return $this;
112112
}
113113

@@ -132,7 +132,7 @@ protected function bootPackageCommands(): self
132132

133133
protected function bootPackageConsoleCommands(): self
134134
{
135-
if (empty($this->package->consoleCommands) || !$this->app->runningInConsole()) {
135+
if (empty($this->package->consoleCommands) || ! $this->app->runningInConsole()) {
136136
return $this;
137137
}
138138

@@ -157,7 +157,7 @@ protected function bootPackageConfigs(): self
157157

158158
protected function bootPackageInertia(): self
159159
{
160-
if (!$this->package->hasInertiaComponents) {
160+
if (! $this->package->hasInertiaComponents) {
161161
return $this;
162162
}
163163

@@ -191,7 +191,7 @@ protected function bootPackageMigrations(): self
191191
$appMigration = $this->generateMigrationName($migrationFileName, $now->addSecond());
192192

193193
// Support for the .stub file extension
194-
if (!file_exists($vendorMigration)) {
194+
if (! file_exists($vendorMigration)) {
195195
$vendorMigration .= '.stub';
196196
}
197197

@@ -212,7 +212,7 @@ protected function bootPackageMigrations(): self
212212

213213
protected function bootPackageProviders(): self
214214
{
215-
if (!$this->package->publishableProviderName || !$this->app->runningInConsole()) {
215+
if (! $this->package->publishableProviderName || ! $this->app->runningInConsole()) {
216216
return $this;
217217
}
218218

@@ -240,7 +240,7 @@ protected function bootPackageRoutes(): self
240240

241241
protected function bootPackageTranslations(): self
242242
{
243-
if (!$this->package->hasTranslations) {
243+
if (! $this->package->hasTranslations) {
244244
return $this;
245245
}
246246

@@ -266,7 +266,7 @@ protected function bootPackageTranslations(): self
266266

267267
protected function bootPackageViews(): self
268268
{
269-
if (!$this->package->hasViews) {
269+
if (! $this->package->hasViews) {
270270
return $this;
271271
}
272272

0 commit comments

Comments
 (0)