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

12 lines
179 B
PHP
Raw Normal View History

2016-05-24 18:47:14 +02:00
<?php
namespace Amp;
2016-05-27 01:20:05 +02:00
final class Emitter implements Observable {
use Internal\Producer {
emit as public;
complete as public;
fail as public;
2016-05-24 18:47:14 +02:00
}
}