1
0
mirror of https://github.com/danog/amp.git synced 2025-01-05 20:48:21 +01:00
amp/lib/Streamable.php

16 lines
197 B
PHP
Raw Normal View History

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