Skip to content

Commit

Permalink
typo: Fix variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
theofidry committed Oct 8, 2023
1 parent f699be6 commit f7e7bcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Phar/PharDiff.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ private static function getDiff(PharInfo $pharInfoA, PharInfo $pharInfoB, string
$pharInfoAFileName = $pharInfoA->getFileName();
$pharInfoBFileName = $pharInfoB->getFileName();

$diffCommmand = implode(
$diffCommand = implode(
' ',
[
$command,
Expand All @@ -117,7 +117,7 @@ private static function getDiff(PharInfo $pharInfoA, PharInfo $pharInfoB, string
],
);

$diffProcess = Process::fromShellCommandline($diffCommmand);
$diffProcess = Process::fromShellCommandline($diffCommand);
$diffProcess->run();

// We do not check if the process is successful as if there
Expand Down

0 comments on commit f7e7bcf

Please sign in to comment.