12 lines
200 B
PHP
12 lines
200 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace Xentral\Components\HttpClient\Stream;
|
||
|
|
|
||
|
|
use Psr\Http\Message\StreamInterface as PsrStreamInterface;
|
||
|
|
|
||
|
|
interface StreamInterface extends PsrStreamInterface
|
||
|
|
{
|
||
|
|
}
|