12 lines
213 B
PHP
12 lines
213 B
PHP
<?php
|
|
namespace GuzzleHttp\Ring\Future;
|
|
|
|
/**
|
|
* Future that provides array-like access.
|
|
*/
|
|
interface FutureArrayInterface extends
|
|
FutureInterface,
|
|
\ArrayAccess,
|
|
\Countable,
|
|
\IteratorAggregate {};
|