Skip to content

Commit

Permalink
refactor: Cosmetic changes to the Extract command (#962)
Browse files Browse the repository at this point in the history
  • Loading branch information
theofidry authored Mar 31, 2023
1 parent 21034c8 commit 612ceae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Console/Command/Extract.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function getConfiguration(): Configuration
new InputArgument(
self::PHAR_ARG,
InputArgument::REQUIRED,
'The PHAR file.',
'The path to the PHAR file',
),
new InputArgument(
self::OUTPUT_ARG,
Expand All @@ -62,14 +62,14 @@ public function getConfiguration(): Configuration

public function execute(IO $io): int
{
$filePath = self::getPharFilePath($io);
$pharPath = self::getPharFilePath($io);
$outputDir = $io->getArgument(self::OUTPUT_ARG)->asNonEmptyString();

if (null === $filePath) {
if (null === $pharPath) {
return ExitCode::FAILURE;
}

self::dumpPhar($filePath, $outputDir);
self::dumpPhar($pharPath, $outputDir);

return ExitCode::SUCCESS;
}
Expand Down

0 comments on commit 612ceae

Please sign in to comment.