We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2356e9c commit 2805393Copy full SHA for 2805393
discovery.rst
@@ -438,14 +438,14 @@ to the Discovery. Let's take a look::
438
439
use MyCustomService;
440
use Http\Mock\Client as MockClient;
441
- use Http\Discovery\HttpClientDiscovery;
+ use Http\Discovery\Psr18ClientDiscovery;
442
use Http\Discovery\Strategy\MockClientStrategy;
443
444
class MyCustomServiceTest extends TestCase
445
{
446
public function setUp()
447
448
- HttpClientDiscovery::prependStrategy(MockClientStrategy::class);
+ Psr18ClientDiscovery::prependStrategy(MockClientStrategy::class);
449
450
$this->service = new MyCustomService;
451
}
0 commit comments