| 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 | 'fossil', 'timeline', '-t', 'ci', |
||
| 27 | '-W', '0', '-n', '0', 'after', $dateSince, |
||
| 28 | '-p', $file->getFullPath(), |
||
| 29 | ], \dirname($file->getFullPath())); |
||
| 30 | |||
| 31 | parent::__construct($file, $process); |
||
| 32 | } |
||
| 53 |