PHP 8.2.30
Preview: SnapshotNodeList.php Size: 1.31 KB
/home/byroehnu/easetack.com/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/SnapshotNodeList.php

<?php declare(strict_types=1);
/*
 * This file is part of PHPUnit.
 *
 * (c) Sebastian Bergmann <sebastian@phpunit.de>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace PHPUnit\TextUI\XmlConfiguration;

use function count;
use ArrayIterator;
use Countable;
use DOMNode;
use DOMNodeList;
use IteratorAggregate;

/**
 * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
 *
 * @internal This class is not covered by the backward compatibility promise for PHPUnit
 *
 * @template-implements IteratorAggregate<int, DOMNode>
 */
final class SnapshotNodeList implements Countable, IteratorAggregate
{
    /**
     * @var list<DOMNode>
     */
    private array $nodes = [];

    /**
     * @param DOMNodeList<DOMNode> $list
     */
    public static function fromNodeList(DOMNodeList $list): self
    {
        $snapshot = new self;

        foreach ($list as $node) {
            $snapshot->nodes[] = $node;
        }

        return $snapshot;
    }

    public function count(): int
    {
        return count($this->nodes);
    }

    /**
     * @return ArrayIterator<int, DOMNode>
     */
    public function getIterator(): ArrayIterator
    {
        return new ArrayIterator($this->nodes);
    }
}

Directory Contents

Dirs: 1 × Files: 4

Name Size Perms Modified Actions
- drwxrwxrwx 2025-05-16 16:14:49
Edit Download
3.38 KB lrw-rw-rw- 2025-04-08 07:59:11
Edit Download
629 B lrw-rw-rw- 2025-04-08 07:59:11
Edit Download
1.58 KB lrw-rw-rw- 2025-04-08 07:59:11
Edit Download
1.31 KB lrw-rw-rw- 2025-04-08 07:59:11
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).