1
0
mirror of https://github.com/danog/amp.git synced 2025-01-22 21:31:18 +01:00
amp/lib/PrivatePlaceholder.php

14 lines
283 B
PHP
Raw Normal View History

2014-09-22 16:47:48 -04:00
<?php
2014-09-22 22:38:32 -04:00
namespace Amp;
2014-09-22 16:47:48 -04: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 16:47:48 -04:00
*/
2015-05-19 00:29:03 -04:00
class PrivatePlaceholder implements Promise {
use Placeholder;
2014-09-22 16:47:48 -04:00
}