芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/giga.mgaplay.com.br/vendor/mongodb/mongodb/src/Model/DatabaseInfoLegacyIterator.php
databases = $databases; } /** * Return the current element as a DatabaseInfo instance. * * @see DatabaseInfoIterator::current() * @see http://php.net/iterator.current * @return DatabaseInfo */ public function current() { return new DatabaseInfo(current($this->databases)); } /** * Return the key of the current element. * * @see http://php.net/iterator.key * @return integer */ #[ReturnTypeWillChange] public function key() { return key($this->databases); } /** * Move forward to next element. * * @see http://php.net/iterator.next * @return void */ #[ReturnTypeWillChange] public function next() { next($this->databases); } /** * Rewind the Iterator to the first element. * * @see http://php.net/iterator.rewind * @return void */ #[ReturnTypeWillChange] public function rewind() { reset($this->databases); } /** * Checks if current position is valid. * * @see http://php.net/iterator.valid * @return boolean */ #[ReturnTypeWillChange] public function valid() { return key($this->databases) !== null; } }