diff --git a/src/Livewire/Outdated.php b/src/Livewire/Outdated.php index 5b2ae76..27640af 100644 --- a/src/Livewire/Outdated.php +++ b/src/Livewire/Outdated.php @@ -26,4 +26,4 @@ public function render() 'packages' => $packages, ]); } -} \ No newline at end of file +} diff --git a/src/OutdatedServiceProvider.php b/src/OutdatedServiceProvider.php index 3de06b8..9b49310 100644 --- a/src/OutdatedServiceProvider.php +++ b/src/OutdatedServiceProvider.php @@ -9,7 +9,6 @@ use Illuminate\Foundation\Application; use Illuminate\Support\ServiceProvider; use Livewire\LivewireManager; -use Livewire\Mechanisms\ComponentRegistry; class OutdatedServiceProvider extends ServiceProvider { @@ -21,5 +20,4 @@ public function boot(): void $livewire->component('outdated', Outdated::class); }); } - -} \ No newline at end of file +} diff --git a/src/Recorders/OutdatedRecorder.php b/src/Recorders/OutdatedRecorder.php index 6712f26..1f992d3 100644 --- a/src/Recorders/OutdatedRecorder.php +++ b/src/Recorders/OutdatedRecorder.php @@ -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());