1
0
mirror of https://github.com/danog/amp.git synced 2024-11-30 04:29:08 +01:00
amp/lib/Internal/PrivatePromise.php
Aaron Piotrowski 992d6e9b39 Return named classes
Better for var_dump and stack traces.
2018-01-27 19:47:46 +01:00

23 lines
509 B
PHP

<?php
namespace Amp\Internal;
use Amp\Promise;
/**
* Wraps a Promise instance that has public methods to resolve and fail the promise into an object that only allows
* access to the public API methods.
*/
class PrivatePromise implements Promise {
/** @var \Amp\Promise */
private $promise;
public function __construct(Promise $promise) {
$this->promise = $promise;
}
public function onResolve(callable $onResolved) {
$this->promise->onResolve($onResolved);
}
}