mirror of
https://github.com/danog/amp.git
synced 2024-11-27 12:35:02 +01:00
14 lines
283 B
PHP
14 lines
283 B
PHP
<?php
|
|
|
|
namespace Amp;
|
|
|
|
/**
|
|
* 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
|
|
*/
|
|
class PrivatePlaceholder implements Promise {
|
|
use Placeholder;
|
|
}
|