1
0
mirror of https://github.com/danog/amp.git synced 2024-11-30 04:29:08 +01:00
amp/lib/Emitter.php
2016-05-29 11:46:58 -05:00

15 lines
288 B
PHP

<?php
namespace Amp;
/**
* Observable implementation that should not be returned from a public API, but used only internally.
*/
final class Emitter implements Observable {
use Internal\Producer {
emit as public;
resolve as public;
fail as public;
}
}