1
0
mirror of https://github.com/danog/amp.git synced 2024-12-11 08:59:46 +01:00
amp/lib/Unresolved.php

12 lines
203 B
PHP
Raw Normal View History

<?php
namespace Alert;
/**
* A "placeholder" value that will be resolved at some point in the future by
2014-04-24 17:23:44 +02:00
* the Promisor that created it.
*/
class Unresolved implements Future {
2014-04-24 17:23:44 +02:00
use Resolvable;
}