Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
aynsix committed Nov 26, 2024
1 parent 20df42b commit 1ed7564
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion databox/api/src/Integration/Phrasea/Expose/ExposeClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ public function deleteAsset(IntegrationConfig $config, IntegrationToken $integra
;
}

private function putPart(string $url, mixed $handleFile, int $partSize, int $retryCount): ?array
private function putPart(string $url, mixed $handleFile, int $partSize, int $retryCount): array
{
if ($retryCount > 0) {
$retryCount--;
Expand All @@ -269,6 +269,8 @@ private function putPart(string $url, mixed $handleFile, int $partSize, int $ret
}
return $this->putPart($url, $handleFile, $partSize, $retryCount);
}
} else {
return [];
}
}
}

0 comments on commit 1ed7564

Please sign in to comment.