Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
20 | class CommitNew |
||
21 | { |
||
22 | /** @var array<int,mixed> */ |
||
23 | private array $data = []; |
||
24 | |||
25 | /** |
||
26 | * @param array<int,string> $paths |
||
27 | * @param array<int,Commit\Identity> $coAuthors |
||
28 | */ |
||
29 | public function __construct( |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * @return array<int,mixed> |
||
41 | */ |
||
42 | public function getData(): array |
||
47 |