Skip to content

Commit

Permalink
add @internal to uplader clases
Browse files Browse the repository at this point in the history
  • Loading branch information
romanbracinik committed Feb 2, 2024
1 parent ac72504 commit ca534ed
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Keboola/StorageApi/ABSUploader.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
use MicrosoftAzure\Storage\Blob\Models\CreateBlockBlobOptions;
use MicrosoftAzure\Storage\Common\Models\ServiceOptions;

/** @internal class used by the client for uploading files to file storage */
class ABSUploader
{
const CHUNK_SIZE = 4 * 1024 * 1024; // 4MiB
Expand Down
1 change: 1 addition & 0 deletions src/Keboola/StorageApi/GCSUploader.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
use Psr\Log\LoggerInterface;
use Psr\Log\NullLogger;

/** @internal class used by the client for uploading files to file storage */
class GCSUploader
{
private const MAX_RETRIES_FOR_SLICE_UPLOAD = 5;
Expand Down
1 change: 1 addition & 0 deletions src/Keboola/StorageApi/S3Uploader.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
use Psr\Log\LoggerInterface;
use Psr\Log\NullLogger;

/** @internal class used by the client for uploading files to file storage */
class S3Uploader
{
/**
Expand Down

0 comments on commit ca534ed

Please sign in to comment.