create merge clover coverage command

This commit is contained in:
2023-09-21 14:57:44 +07:00
parent d00d552447
commit 82f26e10e9
20 changed files with 1084 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?php
declare(strict_types=1);
namespace Dannecron\CoverageMerger\Clover\Dto;
class ClassDto
{
/**
* @param array<string, string> $properties
*/
public function __construct(
private readonly array $properties,
) {
}
public function getProperties(): array
{
return $this->properties;
}
}