Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze authored and github-actions[bot] committed Jan 22, 2025
1 parent 49953de commit ba67eee
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/PackageServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public function packageView(?string $namespace): ?string

protected function bootPackageAssets(): static
{
if (!$this->package->hasAssets || !$this->app->runningInConsole()) {
if (! $this->package->hasAssets || ! $this->app->runningInConsole()) {
return $this;
}

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

protected function bootPackageConsoleCommands(): self
{
if (empty($this->package->consoleCommands) || !$this->app->runningInConsole()) {
if (empty($this->package->consoleCommands) || ! $this->app->runningInConsole()) {
return $this;
}

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

protected function bootPackageInertia(): self
{
if (!$this->package->hasInertiaComponents) {
if (! $this->package->hasInertiaComponents) {
return $this;
}

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

// Support for the .stub file extension
if (!file_exists($vendorMigration)) {
if (! file_exists($vendorMigration)) {
$vendorMigration .= '.stub';
}

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

protected function bootPackageProviders(): self
{
if (!$this->package->publishableProviderName || !$this->app->runningInConsole()) {
if (! $this->package->publishableProviderName || ! $this->app->runningInConsole()) {
return $this;
}

Expand Down Expand Up @@ -240,7 +240,7 @@ protected function bootPackageRoutes(): self

protected function bootPackageTranslations(): self
{
if (!$this->package->hasTranslations) {
if (! $this->package->hasTranslations) {
return $this;
}

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

protected function bootPackageViews(): self
{
if (!$this->package->hasViews) {
if (! $this->package->hasViews) {
return $this;
}

Expand Down

0 comments on commit ba67eee

Please sign in to comment.