You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
387 B
17 lines
387 B
<?php
|
|
|
|
namespace Http\Client;
|
|
|
|
use Psr\Http\Client\ClientInterface;
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*
|
|
* Provide the Httplug HttpClient interface for BC.
|
|
* You should typehint Psr\Http\Client\ClientInterface in new code
|
|
*
|
|
* @deprecated since version 2.4, use Psr\Http\Client\ClientInterface instead; see https://www.php-fig.org/psr/psr-18/
|
|
*/
|
|
interface HttpClient extends ClientInterface
|
|
{
|
|
}
|
|
|