mirror of
https://github.com/danog/amp.git
synced 2024-12-11 00:49:48 +01:00
12 lines
203 B
PHP
Executable File
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;
|
|
}
|