1
0
mirror of https://github.com/danog/amp.git synced 2024-11-30 04:29:08 +01:00
amp/lib/Future.php
Aaron Piotrowski c7f64ce2c0 Initial commit
2016-05-21 09:44:52 -05:00

16 lines
304 B
PHP

<?php
namespace Amp\Awaitable;
use Interop\Async\Awaitable;
/**
* Awaitable implementation that should not be returned from a public API, but used only internally.
*/
final class Future implements Awaitable {
use Internal\Placeholder {
resolve as public;
fail as public;
}
}