1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 04:24:42 +01:00
amp/lib/PrivatePlaceholder.php
2015-05-19 00:29:27 -04:00

12 lines
209 B
PHP

<?php
namespace Amp;
/**
* A placeholder value that will be resolved at some point in the future by
* the Promisor that created it.
*/
class PrivatePlaceholder implements Promise {
use Placeholder;
}