Skip to content

Commit

Permalink
style: fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
xiCO2k committed May 31, 2024
1 parent ec30856 commit 656e86e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/NewCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
use Symfony\Component\Process\Exception\ProcessStartFailedException;
use Symfony\Component\Process\PhpExecutableFinder;
use Symfony\Component\Process\Process;

use function Laravel\Prompts\confirm;
use function Laravel\Prompts\multiselect;
use function Laravel\Prompts\select;
Expand Down Expand Up @@ -805,7 +806,8 @@ protected function runOnValetOrHerd(string $command)
if ($process->isSuccessful()) {
return trim($process->getOutput());
}
} catch (ProcessStartFailedException) {}
} catch (ProcessStartFailedException) {
}
}

return false;
Expand Down

0 comments on commit 656e86e

Please sign in to comment.