@@ -3,9 +3,7 @@ |
||
| 3 | 3 | namespace Bobbyshaw\WatsonVisualRecognition\Commands; |
| 4 | 4 | |
| 5 | 5 | use Bobbyshaw\WatsonVisualRecognition\Classifier; |
| 6 | -use Bobbyshaw\WatsonVisualRecognition\Client; |
|
| 7 | 6 | use Bobbyshaw\WatsonVisualRecognition\Image; |
| 8 | -use Bobbyshaw\WatsonVisualRecognition\Message\ClassifyRequest; |
|
| 9 | 7 | use Bobbyshaw\WatsonVisualRecognition\Message\ClassifyResponse; |
| 10 | 8 | use Symfony\Component\Console\Command\Command; |
| 11 | 9 | use Symfony\Component\Console\Input\InputArgument; |
@@ -26,7 +26,7 @@ |
||
| 26 | 26 | * Get a mock response for a client by mock file name |
| 27 | 27 | * |
| 28 | 28 | * @param string $path Relative path to the mock response file |
| 29 | - * @param string $code HTTP response code to respond with |
|
| 29 | + * @param integer $code HTTP response code to respond with |
|
| 30 | 30 | * |
| 31 | 31 | * @return Response |
| 32 | 32 | */ |
@@ -5,10 +5,6 @@ |
||
| 5 | 5 | use Bobbyshaw\WatsonVisualRecognition\Client; |
| 6 | 6 | use Bobbyshaw\WatsonVisualRecognition\Message\GetClassifiersRequest; |
| 7 | 7 | use Bobbyshaw\WatsonVisualRecognition\Tests\Base; |
| 8 | -use GuzzleHttp\Client as GuzzleClient; |
|
| 9 | -use GuzzleHttp\Handler\MockHandler; |
|
| 10 | -use GuzzleHttp\HandlerStack; |
|
| 11 | -use GuzzleHttp\Psr7\Response; |
|
| 12 | 8 | use GuzzleHttp\Psr7\Request; |
| 13 | 9 | use GuzzleHttp\Psr7\Uri; |
| 14 | 10 | |