Files
san-reymoros/vendor/guzzlehttp/ringphp/src/Future/FutureValue.php
gauvainboiche 058c2110e9 first commit
2020-03-03 22:45:25 +01:00

13 lines
294 B
PHP

<?php
namespace GuzzleHttp\Ring\Future;
/**
* Represents a future value that responds to wait() to retrieve the promised
* value, but can also return promises that are delivered the value when it is
* available.
*/
class FutureValue implements FutureInterface
{
use BaseFutureTrait;
}