1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 04:24:42 +01:00

Remove Streamable interface

This commit is contained in:
Daniel Lowrey 2015-07-22 00:10:09 -04:00
parent 64775544dd
commit cdc5fecd47

View File

@ -1,15 +0,0 @@
<?php
namespace Amp;
interface Streamable {
/**
* @return \Generator
*/
public function stream();
/**
* @return \Generator
*/
public function buffer();
}