1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-01-17 21:38:16 +01:00
guzzle/tests/HttplugIntegrationTest.php
2019-12-21 11:00:58 +02:00

19 lines
351 B
PHP

<?php
namespace GuzzleHttp\Tests;
use GuzzleHttp\Client;
use Http\Client\Tests\HttpClientTest;
use Psr\Http\Client\ClientInterface;
/**
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
*/
class HttplugIntegrationTest extends HttpClientTest
{
protected function createHttpAdapter(): ClientInterface
{
return new Client();
}
}