mirror of
https://github.com/danog/amp.git
synced 2024-11-27 04:24:42 +01:00
12 lines
209 B
PHP
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;
|
|
}
|