mirror of
https://github.com/Dannecron/coverage-merger.git
synced 2025-12-25 15:52:34 +03:00
22 lines
345 B
PHP
22 lines
345 B
PHP
<?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;
|
|
}
|
|
}
|