1<?php
2namespace GuzzleHttp\Ring\Future;
3
4/**
5 * Represents a future value that responds to wait() to retrieve the promised
6 * value, but can also return promises that are delivered the value when it is
7 * available.
8 */
9class FutureValue implements FutureInterface
10{
11    use BaseFutureTrait;
12}
13