1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 12:35:02 +01:00
amp/lib/Streamable.php

16 lines
197 B
PHP

<?php
namespace Amp;
interface Streamable {
/**
* @return \Generator
*/
public function stream();
/**
* @return \Generator
*/
public function buffer();
}