Total Complexity | 6 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class FossilChangesCountProcess extends ChurnProcess implements ChangesCountInterface |
||
13 | { |
||
14 | |||
15 | /** |
||
16 | * Class constructor. |
||
17 | * |
||
18 | * @param File $file The file the process is being executed on. |
||
19 | * @param string $dateSince String containing the date of when to look at commits since (Y-m-d). |
||
20 | */ |
||
21 | public function __construct(File $file, string $dateSince) |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * Returns the number of changes for a file. |
||
34 | */ |
||
35 | public function countChanges(): int |
||
50 |