HttpClient.php 265 B

123456789101112131415
  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. interface HttpClient extends ClientInterface
  11. {
  12. }