Skip to content

Commit

Permalink
[FIX] Mistakes in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
robregonm committed Apr 9, 2020
1 parent 1fc991c commit d5cfc80
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ use obregonco\B2\Bucket;
$client = new Client('accountId', [
'keyId' => 'your-key-id', // optional if you want to use master key (account Id)
'applicationKey' => 'your-application-key',
'version' => 2, // By default will use version 1
'domainAliases' => [ // When you want to use your own domains (using CNAME)
'f0001.backblazeb2.com' => 'alias01.mydomain.com',
],
'largeFileLimit' => 3000000000, // Lower limit for using large files upload support. Default: 3GB
]);
$client->version = 2; // By default will use version 1
$client->domainAliases = [ // When you want to use your own domains (using CNAME)
'f0001.backblazeb2.com' => 'alias01.mydomain.com',
];
$client->largeFileLimit = 3000000000; // Lower limit for using large files upload support. Default: 3GB

// Returns a Bucket object.
$bucket = $client->createBucket([
Expand Down

0 comments on commit d5cfc80

Please sign in to comment.