final 1.2.3 - file sh per generare zip

This commit is contained in:
2026-06-07 20:56:38 +02:00
parent f9c1268466
commit cd10d100ec
2442 changed files with 158 additions and 325423 deletions
@@ -1,74 +0,0 @@
<?php declare(strict_types=1);
/*
* This file is part of phpunit/php-code-coverage.
*
* (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 SebastianBergmann\CodeCoverage\Data;
use function array_merge;
use function array_unique;
use NoDiscard;
use SebastianBergmann\CodeCoverage\Driver\XdebugDriver;
/**
* @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage
*
* @phpstan-import-type TestIdType from ProcessedCodeCoverageData
* @phpstan-import-type XdebugPathCoverageType from XdebugDriver
*/
final class ProcessedPathCoverageData
{
/** @var array<int, int> */
public readonly array $path;
/** @var list<TestIdType> */
public array $hit;
/**
* @param XdebugPathCoverageType $xdebugCoverageData
*/
public static function fromXdebugCoverage(array $xdebugCoverageData): self
{
return new self(
$xdebugCoverageData['path'],
[],
);
}
/**
* @param array<int, int> $path
* @param list<TestIdType> $hit
*/
public function __construct(
array $path,
array $hit,
) {
$this->hit = $hit;
$this->path = $path;
}
#[NoDiscard]
public function merge(self $data): self
{
if ($data->hit === []) {
return $this;
}
return new self(
$this->path,
array_unique(array_merge($this->hit, $data->hit)),
);
}
/**
* @param TestIdType $testCaseId
*/
public function recordHit(string $testCaseId): void
{
$this->hit[] = $testCaseId;
}
}