Skip to content

Commit

Permalink
Fix code styling [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
aarondfrancis authored and github-actions[bot] committed Dec 4, 2023
1 parent 00c3310 commit eded3cc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Livewire/Outdated.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ public function render()
'packages' => $packages,
]);
}
}
}
4 changes: 1 addition & 3 deletions src/OutdatedServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
use Illuminate\Foundation\Application;
use Illuminate\Support\ServiceProvider;
use Livewire\LivewireManager;
use Livewire\Mechanisms\ComponentRegistry;

class OutdatedServiceProvider extends ServiceProvider
{
Expand All @@ -21,5 +20,4 @@ public function boot(): void
$livewire->component('outdated', Outdated::class);
});
}

}
}
2 changes: 1 addition & 1 deletion src/Recorders/OutdatedRecorder.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function record(SharedBeat $event): void
return;
}

$result = Process::run("composer outdated -D -f json");
$result = Process::run('composer outdated -D -f json');

if ($result->failed()) {
throw new RuntimeException('Composer outdated failed: ' . $result->errorOutput());
Expand Down

0 comments on commit eded3cc

Please sign in to comment.