Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
timvandijck authored and github-actions[bot] committed Jan 25, 2024
1 parent 5f1c5f3 commit 449c164
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Commands/CleanRayCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace Spatie\LaravelRay\Commands;

use Illuminate\Console\Command;
use Illuminate\Filesystem\Filesystem;
use Illuminate\Support\Facades\Process;

class CleanRayCommand extends Command
Expand All @@ -27,8 +26,9 @@ public function handle()
$this->withProgressBar($directories, function ($directory) {
$result = Process::run('./vendor/bin/remove-ray.sh ' . $directory);

Check failure on line 27 in src/Commands/CleanRayCommand.php

View workflow job for this annotation

GitHub Actions / phpstan

Call to static method run() on an unknown class Illuminate\Support\Facades\Process.

if (!$result->successful()) {
if (! $result->successful()) {
$this->error($result->errorOutput());

return;
}
});
Expand Down

0 comments on commit 449c164

Please sign in to comment.