mirror of
https://github.com/guzzle/guzzle.git
synced 2025-01-17 21:38:16 +01:00
19 lines
351 B
PHP
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();
|
|
}
|
|
}
|