Total Complexity | 3 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
6 | class TimestampSpec |
||
7 | { |
||
8 | protected string $column; |
||
9 | |||
10 | protected string $format; |
||
11 | |||
12 | /** |
||
13 | * @var string|null |
||
14 | */ |
||
15 | protected ?string $missingValue = null; |
||
16 | |||
17 | 12 | public function __construct(string $column, string $format, ?string $missingValue = null) |
|
22 | } |
||
23 | |||
24 | /** |
||
25 | * @return array<string,string> |
||
26 | */ |
||
27 | 3 | public function toArray(): array |
|
39 | } |
||
40 | } |