/var/www/vhosts/ihelp.ro/httpdocs/vendor/phar-io/manifest/src/xml
NameSizeModeActions
AuthorElement.php6090644editdlrm
AuthorElementCollection.php5650644editdlrm
BundlesElement.php6040644editdlrm
ComponentElement.php6160644editdlrm
ComponentElementCollection.php5740644editdlrm
ContainsElement.php8750644editdlrm
CopyrightElement.php7500644editdlrm
ElementCollection.php15550644editdlrm
ExtElement.php5080644editdlrm
ExtElementCollection.php5560644editdlrm
ExtensionElement.php6200644editdlrm
LicenseElement.php6060644editdlrm
ManifestDocument.php29590644editdlrm
ManifestElement.php19920644editdlrm
PhpElement.php7690644editdlrm
RequiresElement.php5570644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/phar-io/manifest/src/xml/ElementCollection.php (1555B)
, Sebastian Heuer , Sebastian Bergmann * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PharIo\Manifest; use DOMElement; use DOMNodeList; abstract class ElementCollection implements \Iterator { /** @var DOMElement[] */ private $nodes = []; /** @var int */ private $position; public function __construct(DOMNodeList $nodeList) { $this->position = 0; $this->importNodes($nodeList); } #[\ReturnTypeWillChange] abstract public function current(); public function next(): void { $this->position++; } public function key(): int { return $this->position; } public function valid(): bool { return $this->position < \count($this->nodes); } public function rewind(): void { $this->position = 0; } protected function getCurrentElement(): DOMElement { return $this->nodes[$this->position]; } private function importNodes(DOMNodeList $nodeList): void { foreach ($nodeList as $node) { if (!$node instanceof DOMElement) { throw new ElementCollectionException( \sprintf('\DOMElement expected, got \%s', \get_class($node)) ); } $this->nodes[] = $node; } } }