Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | final class GitChangesCountProcess extends ChurnProcess implements ChangesCountInterface |
||
16 | { |
||
17 | /** |
||
18 | * Class constructor. |
||
19 | * |
||
20 | * @param File $file The file the process is being executed on. |
||
21 | * @param string $commitsSince String containing the date of when to look at commits since. |
||
22 | */ |
||
23 | public function __construct(File $file, string $commitsSince) |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * Returns the number of changes for a file. |
||
36 | */ |
||
37 | #[\Override] |
||
43 |