@inheritDoc
Overrides VcsDriverInterface::getFileContent
public function getFileContent(string $file, string $identifier) : ?string { $this->process ->execute([ 'fossil', 'cat', '-r', $identifier, '--', $file, ], $content, $this->checkoutDir); if ('' === trim($content)) { return null; } return $content; }