Skip to content

Commit

Permalink
Make helper methods public for bulk
Browse files Browse the repository at this point in the history
  • Loading branch information
frankkessler committed Nov 24, 2016
1 parent 6793c09 commit c84e57c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Bulk.php
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ public function addBinaryBatch($jobId, BinaryBatch $binaryBatch, $contentType =
return new BulkBatchResponse();
}

protected function batchResponseFormatFromContentType($contentType)
public function batchResponseFormatFromContentType($contentType)
{
switch (strtoupper($contentType)) {
case 'ZIP_CSV':
Expand All @@ -520,7 +520,7 @@ protected function batchResponseFormatFromContentType($contentType)
return $return;
}

protected function parsePkChunkingHeader($pk_chunk_header)
public function parsePkChunkingHeader($pk_chunk_header)
{
if (is_array($pk_chunk_header)) {
$header_parts = [];
Expand Down

0 comments on commit c84e57c

Please sign in to comment.