mirror of
https://github.com/Dannecron/coverage-merger.git
synced 2025-12-26 00:02:35 +03:00
create merge clover coverage command
This commit is contained in:
21
src/Clover/Dto/ClassDto.php
Normal file
21
src/Clover/Dto/ClassDto.php
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user