Skip to content

Commit

Permalink
add test code style
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosocarvalho committed Jul 30, 2019
1 parent 2d481f7 commit 4189f29
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions bin/phpunit
4 changes: 2 additions & 2 deletions src/CloudinaryAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace CarlosOCarvalho\Flysystem\Cloudinary;

use Exception;
use Cloudinary;
use Cloudinary as ClDriver;
use Cloudinary\Api as Api;
use Cloudinary\Uploader;
use League\Flysystem\Config;
Expand Down Expand Up @@ -31,7 +31,7 @@ class CloudinaryAdapter implements AdapterInterface
*/
public function __construct(array $options)
{
Cloudinary::config($options);
ClDriver::config($options);
$this->api = new Api;
}
/**
Expand Down

0 comments on commit 4189f29

Please sign in to comment.