| 1 | <?php |
||
| 17 | class StreamInput implements InputInterface |
||
| 18 | { |
||
| 19 | use \GuzzleHttp\Psr7\MessageTrait; |
||
| 20 | use \JonnyW\PhantomJs\IO\InputTrait; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Internal constructor. |
||
| 24 | * |
||
| 25 | * @param string|null|resource|StreamInterface $body |
||
| 26 | */ |
||
| 27 | public function __construct($body) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Get input type. |
||
| 34 | * |
||
| 35 | * @return string |
||
| 36 | */ |
||
| 37 | public function getType() |
||
| 41 | } |
||
| 42 |