Skip to content

Commit

Permalink
style: apply fixes from Pint
Browse files Browse the repository at this point in the history
  • Loading branch information
owenvoke committed Dec 12, 2023
1 parent 9afbb03 commit 90dcfda
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Commands/BuildCommand.php
Expand Up @@ -15,13 +15,13 @@

use Illuminate\Console\Application as Artisan;
use Illuminate\Support\Facades\File;
use RuntimeException;
use Symfony\Component\Console\Command\SignalableCommandInterface;
use Symfony\Component\Console\Helper\ProgressBar;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\NullOutput;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Process\Process;
use RuntimeException;
use Throwable;

use function Laravel\Prompts\text;
Expand Down Expand Up @@ -163,8 +163,8 @@ private function compile(string $name): BuildCommand

$this->output->newLine();

$pharPath = $this->app->basePath($this->getBinary()) . '.phar';
$pharPath = $this->app->basePath($this->getBinary()).'.phar';

if (! File::exists($pharPath)) {
throw new RuntimeException('Failed to compile the application.');
}
Expand Down

0 comments on commit 90dcfda

Please sign in to comment.