mirror of
https://github.com/danog/amp.git
synced 2024-11-27 04:24:42 +01:00
17 lines
315 B
PHP
17 lines
315 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Amp;
|
|
|
|
/**
|
|
* Observable implementation that should not be returned from a public API, but used only internally.
|
|
*/
|
|
final class Producer implements Observable {
|
|
use Internal\Producer {
|
|
emit as public;
|
|
resolve as public;
|
|
fail as public;
|
|
}
|
|
}
|