mirror of
https://github.com/danog/amp.git
synced 2025-01-05 20:48:21 +01:00
16 lines
197 B
PHP
16 lines
197 B
PHP
|
<?php
|
||
|
|
||
|
namespace Amp;
|
||
|
|
||
|
interface Streamable {
|
||
|
/**
|
||
|
* @return \Generator
|
||
|
*/
|
||
|
public function stream();
|
||
|
|
||
|
/**
|
||
|
* @return \Generator
|
||
|
*/
|
||
|
public function buffer();
|
||
|
}
|