mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-11 21:38:39 +00:00
16 lines
265 B
PHP
Executable File
16 lines
265 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
|
|
*/
|
|
interface HttpClient extends ClientInterface
|
|
{
|
|
}
|