Server : Apache System : Linux indy02.toastserver.com 3.10.0-962.3.2.lve1.5.85.el7.x86_64 #1 SMP Thu Apr 18 15:18:36 UTC 2024 x86_64 User : palandch ( 1163) PHP Version : 7.1.33 Disable Function : NONE Directory : /home/palandch/Cloudflare-CPanel-7.0.1/vendor/guzzlehttp/ringphp/src/Future/ |
<?php namespace GuzzleHttp\Ring\Future; /** * Represents a future array value that when dereferenced returns an array. */ class FutureArray implements FutureArrayInterface { use MagicFutureTrait; public function offsetExists($offset) { return isset($this->_value[$offset]); } public function offsetGet($offset) { return $this->_value[$offset]; } public function offsetSet($offset, $value) { $this->_value[$offset] = $value; } public function offsetUnset($offset) { unset($this->_value[$offset]); } public function count() { return count($this->_value); } public function getIterator() { return new \ArrayIterator($this->_value); } }