Файловый менеджер - Редактировать - /home/lmsyaran/public_html/j3/plugins/system/hdpreplyviaemail/lib/vendor/ddeboer/imap/src/MessageIterator.php
Назад
<?php declare(strict_types=1); namespace Ddeboer\Imap; final class MessageIterator extends \ArrayIterator implements MessageIteratorInterface { /** * @var ImapResourceInterface */ private $resource; /** * Constructor. * * @param ImapResourceInterface $resource IMAP resource * @param array $messageNumbers Array of message numbers */ public function __construct(ImapResourceInterface $resource, array $messageNumbers) { $this->resource = $resource; parent::__construct($messageNumbers); } /** * Get current message. */ public function current(): MessageInterface { $current = parent::current(); if (!\is_int($current)) { throw new Exception\OutOfBoundsException(\sprintf( 'The current value "%s" isn\'t an integer and doesn\'t represent a message;' . ' try to cycle this "%s" with a native php function like foreach or with the method getArrayCopy(),' . ' or check it by calling the methods valid().', \is_object($current) ? \get_class($current) : \gettype($current), static::class )); } return new Message($this->resource, $current); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0.04 |
proxy
|
phpinfo
|
Настройка