From d24319239c7df2b5511ea3837ae0bfc0dd3d937b Mon Sep 17 00:00:00 2001 From: Mikkel Ricky Date: Mon, 15 Oct 2018 16:05:01 +0200 Subject: [PATCH] Fixed casing in namespaces --- composer.json | 4 ++-- src/Client.php | 2 +- src/Exceptions/BadRequest.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 334efb9..7167cc5 100644 --- a/composer.json +++ b/composer.json @@ -29,12 +29,12 @@ }, "autoload": { "psr-4": { - "Kapersoft\\Sharefile\\": "src" + "Kapersoft\\ShareFile\\": "src" } }, "autoload-dev": { "psr-4": { - "Kapersoft\\Sharefile\\Test\\": "tests" + "Kapersoft\\ShareFile\\Test\\": "tests" } }, "scripts": { diff --git a/src/Client.php b/src/Client.php index 1ce9188..f163eb0 100644 --- a/src/Client.php +++ b/src/Client.php @@ -8,7 +8,7 @@ use GuzzleHttp\Handler\MockHandler; use GuzzleHttp\Client as GuzzleClient; use GuzzleHttp\Exception\ClientException; -use Kapersoft\Sharefile\Exceptions\BadRequest; +use Kapersoft\ShareFile\Exceptions\BadRequest; /** * Class Client. diff --git a/src/Exceptions/BadRequest.php b/src/Exceptions/BadRequest.php index 2bf67d8..7147b92 100644 --- a/src/Exceptions/BadRequest.php +++ b/src/Exceptions/BadRequest.php @@ -1,6 +1,6 @@