Skip to content

Commit

Permalink
Merge branch 'hotfix/1.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramesh Mhetre committed Aug 26, 2016
2 parents c15c6d6 + d6f8f94 commit 2825b1d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,14 @@ $ composer require mhetreramesh/flysystem-backblaze
## Usage

``` php
$skeleton = new League\Skeleton();
echo $skeleton->echoPhrase('Hello, League!');
use Mhetreramesh\Flysystem\BackblazeAdapter;
use League\Flysystem\Filesystem;
use ChrisWhite\B2\Client;

$client = new Client($accountId, $applicationKey);
$adapter = new BackblazeAdapter($client);

$filesystem = new Filesystem($adapter);
```

## Change log
Expand Down
2 changes: 1 addition & 1 deletion src/BackblazeAdapter.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Mhetreramesh\Flysystem\Backblaze;
namespace Mhetreramesh\Flysystem\BackblazeAdapter;

use ChrisWhite\B2\Client;
use League\Flysystem\Adapter\AbstractAdapter;
Expand Down

0 comments on commit 2825b1d

Please sign in to comment.