Skip to content
This repository was archived by the owner on Jan 16, 2018. It is now read-only.

Commit 2d0dfb8

Browse files
committed
fix namespaces
1 parent fa946c6 commit 2d0dfb8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/BatchRequest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace Http\Client\Util;
44

5-
use Http\Client\BatchResult;
65
use Http\Client\Exception;
76
use Http\Client\Exception\BatchException;
87
use Psr\Http\Message\RequestInterface;

src/BatchResult.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,17 @@
33
namespace Http\Client\Util;
44

55
use Http\Client\Exception;
6+
use Http\Client\BatchResult as BatchResultInterface;
67
use Psr\Http\Message\RequestInterface;
78
use Psr\Http\Message\ResponseInterface;
9+
use UnexpectedValueException;
810

911
/**
1012
* Responses and exceptions returned from parallel request execution
1113
*
1214
* @author Márk Sági-Kazár <[email protected]>
1315
*/
14-
final class BatchResult implements \Http\Client\BatchResult
16+
final class BatchResult implements BatchResultInterface
1517
{
1618
/**
1719
* @var \SplObjectStorage

0 commit comments

Comments
 (0)