1
0
mirror of https://github.com/danog/amp.git synced 2024-12-11 00:49:48 +01:00
amp/lib/Unresolved.php
2014-04-25 22:30:01 -04:00

12 lines
203 B
PHP
Executable File

<?php
namespace Alert;
/**
* A "placeholder" value that will be resolved at some point in the future by
* the Promisor that created it.
*/
class Unresolved implements Future {
use Resolvable;
}