Skip to content

Commit b6abafc

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 3e85433 + 9759e2c commit b6abafc

File tree

6 files changed

+5
-8
lines changed

6 files changed

+5
-8
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
"api-clients/service": "dev-master",
1818
"clue/block-react": "^1.1",
1919
"clue/buzz-react": "^1.1",
20-
"container-interop/container-interop": "^1.1",
2120
"daverandom/exceptional-json": "^1.0.1",
2221
"doctrine/annotations": "^1.2",
22+
"psr/container": "^1.0",
2323
"react/http-client": "^0.4.15",
2424
"react/promise": "^2.4",
2525
"wyrihaximus/ticking-promise": "^1.6"

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Client.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
use ApiClients\Foundation\Middleware\MiddlewareRunner;
77
use ApiClients\Foundation\Transport\CommandBus;
88
use Clue\React\Buzz\Browser;
9-
use Interop\Container\ContainerInterface;
109
use Psr\Http\Message\RequestInterface;
1110
use Psr\Http\Message\ResponseInterface;
1211
use React\EventLoop\LoopInterface;
@@ -31,7 +30,7 @@ final class Client implements ClientInterface
3130
protected $loop;
3231

3332
/**
34-
* @var ContainerInterface
33+
* @var Locator
3534
*/
3635
protected $locator;
3736

@@ -52,7 +51,7 @@ final class Client implements ClientInterface
5251

5352
/**
5453
* @param LoopInterface $loop
55-
* @param Locator|ContainerInterface $locator
54+
* @param Locator $locator
5655
* @param Browser $buzz
5756
* @param array $options
5857
*/

src/ClientInterface.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
use ApiClients\Foundation\Middleware\MiddlewareRunner;
77
use ApiClients\Foundation\Transport\CommandBus;
88
use Clue\React\Buzz\Browser;
9-
use Interop\Container\ContainerInterface;
109
use InvalidArgumentException;
1110
use Psr\Http\Message\RequestInterface;
1211
use Psr\Http\Message\ResponseInterface;

src/Factory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
use ApiClients\Foundation\Middleware\Locator\Locator;
66
use Clue\React\Buzz\Browser;
77
use Clue\React\Buzz\Io\Sender;
8-
use Interop\Container\ContainerInterface;
98
use InvalidArgumentException;
9+
use Psr\Container\ContainerInterface;
1010
use React\Dns\Resolver\Factory as ResolverFactory;
1111
use React\Dns\Resolver\Resolver;
1212
use React\EventLoop\LoopInterface;

tests/FactoryTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
use ApiClients\Foundation\Transport\Options;
1111
use ApiClients\Tools\TestUtilities\TestCase;
1212
use DI\ContainerBuilder;
13-
use Interop\Container\ContainerInterface;
1413
use League\Event\Emitter;
1514
use League\Event\EmitterInterface;
1615
use React\EventLoop\Factory as LoopFactory;

0 commit comments

Comments
 (0)