Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types = 1); |
||
11 | class GitChangesCountProcess extends ChurnProcess implements ChangesCountInterface |
||
12 | { |
||
13 | /** |
||
14 | * Class constructor. |
||
15 | * @param File $file The file the process is being executed on. |
||
16 | * @param string $commitsSince String containing the date of when to look at commits since. |
||
17 | */ |
||
18 | public function __construct(File $file, string $commitsSince) |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * Returns the number of changes for a file. |
||
31 | * @return integer |
||
32 | */ |
||
33 | public function countChanges(): int |
||
38 |