Skip to content

Commit d3aaf61

Browse files
author
Jamie Hannaford
committed
Remove conflicts
2 parents 72460ae + 31dbb3c commit d3aaf61

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Requirements
1919
* PHP >=5.4
2020
* cURL extension for PHP
2121

22-
**Note**: Since PHP 5.3 has reached [end of life](http://php.net/eol.php) and is no longer officially supported, we are moving to 5.4 as a minimum requirement. If upgrading is not an option and you still need a stable version of the SDK for 5.3, please follow [this guide](http://docs.php-opencloud.com/en/latest/using-php-5.3).
22+
**Note**: Since PHP 5.3 has reached [end of life](http://php.net/eol.php) and is no longer officially supported, we are moving to 5.4 as a minimum requirement. If upgrading is not an option and you still need a stable version of the SDK for 5.3, please follow [this guide](http://docs.php-opencloud.com/en/latest/using-php-5.3.html).
2323

2424
Installation
2525
------------

doc/services/object-store/migrating-containers.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ Requirements
3737
3838
use Guzzle\Plugin\Backoff\BackoffPlugin;
3939
40-
// set timeout in secs
41-
$timeout = 10;
40+
// maximum number of retries
41+
$maxRetries = 10;
4242
4343
// set HTTP error codes
4444
$httpErrors = array(500, 503, 408);
4545
46-
$backoffPlugin = BackoffPlugin::getExponentialBackoff($timeout, $httpErrors);
46+
$backoffPlugin = BackoffPlugin::getExponentialBackoff($maxRetries, $httpErrors);
4747
$client->addSubscriber($backoffPlugin);
4848
4949

doc/services/object-store/objects.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ Get content of file
259259
.. code-block:: php
260260
261261
/** @param $content Guzzle\Http\EntityBody */
262-
$content = $object->getContainer();
262+
$content = $object->getContent();
263263
264264
265265
Get type of file

0 commit comments

Comments
 (0)