fuc-new/vendor/php-http/httplug/src/HttpClient.php
hellcat 1fe8673f62 1
2025-10-01 13:34:29 +08:00

18 lines
387 B
PHP
Executable File

<?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
{
}