Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewPattell committed May 12, 2020
1 parent 988e485 commit 6d5fb67
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/ConsoleLogDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

namespace Kakadu\Microservices;

use console\microservice\interfaces\ILogDriver;
use Kakadu\Microservices\interfaces\ILogDriver;

/**
* Class ConsoleLogDriver
Expand Down
4 changes: 2 additions & 2 deletions src/Microservice.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

namespace Kakadu\Microservices;

use console\microservice\exceptions\MicroserviceException;
use console\microservice\interfaces\ILogDriver;
use Kakadu\Microservices\exceptions\MicroserviceException;
use Kakadu\Microservices\interfaces\ILogDriver;
use GuzzleHttp\Client as HttpClient;
use GuzzleHttp\Exception\BadResponseException;

Expand Down
2 changes: 1 addition & 1 deletion src/MjResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

namespace Kakadu\Microservices;

use console\microservice\exceptions\BaseException;
use Kakadu\Microservices\exceptions\BaseException;

/**
* Class MjResponse
Expand Down

0 comments on commit 6d5fb67

Please sign in to comment.