Skip to content

Commit

Permalink
Rename $jsonError to $jsonFileDiff (#3742)
Browse files Browse the repository at this point in the history
  • Loading branch information
yguedidi committed May 6, 2023
1 parent 4c1544d commit dab0910
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/Parallel/Application/ParallelFileProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,8 @@ function (array $json) use (
$systemErrors[] = SystemError::decode($jsonError);
}

foreach ($json[Bridge::FILE_DIFFS] as $jsonError) {
$fileDiffs[] = FileDiff::decode($jsonError);
foreach ($json[Bridge::FILE_DIFFS] as $jsonFileDiff) {
$fileDiffs[] = FileDiff::decode($jsonFileDiff);
}

$postFileCallback($json[Bridge::FILES_COUNT]);
Expand Down

0 comments on commit dab0910

Please sign in to comment.