@inheritDoc
Overrides VcsDriverInterface::getChangeDate
public function getChangeDate(string $identifier) : ?\DateTimeImmutable { $this->process ->execute([ 'hg', 'log', '--template', '{date|rfc3339date}', '-r', $identifier, ], $output, $this->repoDir); return new \DateTimeImmutable(trim($output), new \DateTimeZone('UTC')); }