Skip to content

Commit

Permalink
refactor code
Browse files Browse the repository at this point in the history
  • Loading branch information
nahid committed Jul 27, 2020
1 parent 360bb84 commit 64d3cf4
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nahid/apiz",
"description": "Apiz is a boilerplate for REST API manager",
"description": "Apiz is a boilerplate for REST API HTTP call manager",
"type": "php",
"require": {
"php": ">=5.6.0 | >=7.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Apiz\Http;
namespace Apiz\Http\Clients;

use Exception;
use Psr\Http\Message\RequestInterface;
Expand Down
1 change: 0 additions & 1 deletion src/Http/Clients/GuzzleClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace Apiz\Http\Clients;

use Apiz\Http\AbstractClient;
use GuzzleHttp\Client;
use GuzzleHttp\Psr7\Request;
use GuzzleHttp\Psr7\Response;
Expand Down
1 change: 1 addition & 0 deletions src/Http/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

namespace Apiz\Http;

use Apiz\Http\Clients\AbstractClient;
use Exception;
use Apiz\Exceptions\ClientNotDefinedException;
use Apiz\Exceptions\InvalidResponseClassException;
Expand Down

0 comments on commit 64d3cf4

Please sign in to comment.