1<?php
2namespace GuzzleHttp\Ring\Future;
3
4/**
5 * Future that provides array-like access.
6 */
7interface FutureArrayInterface extends
8    FutureInterface,
9    \ArrayAccess,
10    \Countable,
11    \IteratorAggregate {};
12