1
0
mirror of https://github.com/danog/amp.git synced 2024-12-11 17:09:40 +01:00
amp/lib/PrivatePlaceholder.php

14 lines
283 B
PHP
Raw Normal View History

2014-09-22 22:47:48 +02:00
<?php
2014-09-23 04:38:32 +02:00
namespace Amp;
2014-09-22 22:47:48 +02:00
/**
* A placeholder value that will be resolved at some point in the future by
* the Promisor that created it.
*
* @TODO remove this and use an anonymous class once PHP7 is required
2014-09-22 22:47:48 +02:00
*/
2015-05-19 06:29:03 +02:00
class PrivatePlaceholder implements Promise {
use Placeholder;
2014-09-22 22:47:48 +02:00
}