HttpClient.php 387 B

1234567891011121314151617
  1. <?php
  2. namespace Http\Client;
  3. use Psr\Http\Client\ClientInterface;
  4. /**
  5. * {@inheritdoc}
  6. *
  7. * Provide the Httplug HttpClient interface for BC.
  8. * You should typehint Psr\Http\Client\ClientInterface in new code
  9. *
  10. * @deprecated since version 2.4, use Psr\Http\Client\ClientInterface instead; see https://www.php-fig.org/psr/psr-18/
  11. */
  12. interface HttpClient extends ClientInterface
  13. {
  14. }