• work's avatar
    es-php · 956ecc5d
    work authored
    956ecc5d
FutureArrayInterface.php 213 Bytes
<?php
namespace GuzzleHttp\Ring\Future;

/**
 * Future that provides array-like access.
 */
interface FutureArrayInterface extends
    FutureInterface,
    \ArrayAccess,
    \Countable,
    \IteratorAggregate {};