Файловый менеджер - Редактировать - /var/www/html/administrator/components/com_jchat/Framework/guzzlehttp/ringphp/src/Future/CompletedFutureArray.php
Ðазад
<?php namespace GuzzleHttp\Ring\Future; /** * * @package JCHAT::FRAMEWORK::administrator::components::com_jchat * @subpackage framework * @subpackage guzzlehttp * @subpackage ringphp * @subpackage Future * @author Joomla! Extensions Store * @copyright (C) 2015 - Joomla! Extensions Store * @license GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html */ defined ( '_JEXEC' ) or die ( 'Restricted access' ); /** * Represents a future array that has been completed successfully. */ class CompletedFutureArray extends CompletedFutureValue implements FutureArrayInterface { public function __construct(array $result) { parent::__construct($result); } public function offsetExists($offset): bool { return isset($this->result[$offset]); } // : mixed as of PHP 8.0 for 9.0 #[\ReturnTypeWillChange] public function offsetGet($offset) { return $this->result[$offset]; } public function offsetSet($offset, $value): void { $this->result[$offset] = $value; } public function offsetUnset($offset): void { unset($this->result[$offset]); } public function count(): int { return count($this->result); } public function getIterator(): \Traversable { return new \ArrayIterator($this->result); } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка