Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | public function __construct(File $file, string $dateSince) |
||
24 | { |
||
25 | $process = new Process([ |
||
26 | 'hg', '--pager=never', '--color=never', |
||
27 | 'log', '--date', "$dateSince to now", |
||
28 | $file->getFullPath(), '--template=\'1\\n\'', |
||
29 | ], \dirname($file->getFullPath())); |
||
30 | |||
31 | parent::__construct($file, $process); |
||
32 | } |
||
43 |