Files
san-reymoros/vendor/guzzlehttp/ringphp/src/Future/FutureArrayInterface.php
gauvainboiche 058c2110e9 first commit
2020-03-03 22:45:25 +01:00

12 lines
213 B
PHP

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