diff --git a/src/Curl/CurlClient.php b/src/Curl/CurlClient.php
index 2eee95a020040083c54ae713ee4527b0e826de63..00c968652d1dabc1a05f551712075dcdd75a1d85 100644
--- a/src/Curl/CurlClient.php
+++ b/src/Curl/CurlClient.php
@@ -50,10 +50,10 @@ class CurlClient implements HttpClient {
 			return $this->prepareResponse();
 		} catch ( \Exception $e ) {
 			$this->closeConnection();
-			if ( $e instanceof \WPDesk\HttpClient\HttpClientRequestException ) {
+			if ( $e instanceof HttpClientRequestException ) {
 				throw $e;
 			}
-			throw \WPDesk\HttpClient\Curl\CurlExceptionFactory::createDefaultException( $e->getMessage(), $e->getCode(), $e );
+			throw CurlExceptionFactory::createDefaultException( $e->getMessage(), $e->getCode(), $e );
 		}
 	}
 
@@ -132,7 +132,7 @@ class CurlClient implements HttpClient {
 			return;
 		}
 		$errorMessage = \curl_error( $this->curlResource );
-		throw \WPDesk\HttpClient\Curl\CurlExceptionFactory::createCurlException( $errorMessage, $errorNumber );
+		throw CurlExceptionFactory::createCurlException( $errorMessage, $errorNumber );
 	}
 
 	/**
@@ -146,7 +146,7 @@ class CurlClient implements HttpClient {
 	private function prepareResponse() {
 		list( $rawHeaders, $rawBody ) = $this->extractResponseHeadersAndBody();
 
-		return new \WPDesk\HttpClient\HttpClientResponse( $rawHeaders, $rawBody, $this->httpResponseCode );
+		return new HttpClientResponse( $rawHeaders, $rawBody, $this->httpResponseCode );
 	}
 
 	/**
@@ -199,4 +199,4 @@ class CurlClient implements HttpClient {
 	public function put( $url, $body, array $headers, $timeOut ) {
 		return $this->send( $url, 'PUT', $body, $headers, $timeOut );
 	}
-}
\ No newline at end of file
+}