PHP 8.2.31
Preview: VariableCollection.php Size: 1.32 KB
//opt/cpanel/ea-wappspector/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/VariableCollection.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\Configuration;

use function count;
use Countable;
use IteratorAggregate;

/**
 * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
 *
 * @psalm-immutable
 *
 * @template-implements IteratorAggregate<int, Variable>
 */
final class VariableCollection implements Countable, IteratorAggregate
{
    /**
     * @psalm-var list<Variable>
     */
    private readonly array $variables;

    /**
     * @psalm-param list<Variable> $variables
     */
    public static function fromArray(array $variables): self
    {
        return new self(...$variables);
    }

    private function __construct(Variable ...$variables)
    {
        $this->variables = $variables;
    }

    /**
     * @psalm-return list<Variable>
     */
    public function asArray(): array
    {
        return $this->variables;
    }

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

    public function getIterator(): VariableCollectionIterator
    {
        return new VariableCollectionIterator($this);
    }
}

Directory Contents

Dirs: 0 × Files: 35

Name Size Perms Modified Actions
830 B lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.32 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.34 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
655 B lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.42 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.36 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.18 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.34 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.45 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
814 B lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.33 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.30 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.13 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.48 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.39 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
651 B lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.47 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.31 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
817 B lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.35 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.36 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
3.15 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
5.45 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.69 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.46 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.38 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.18 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.36 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.32 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.44 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.42 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.35 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
966 B lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.32 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.34 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download

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