aboutsummaryrefslogtreecommitdiffstats
path: root/public/system/storage/vendor/guzzlehttp/ringphp/src/Future/FutureValue.php
blob: 4cac9281b94cb3109f61d2ff045dd8a3dcb6fce1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?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;
}