mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-22 04:31:13 +01:00
x
Summary: Test Plan: Reviewers: CC:
This commit is contained in:
parent
6039ca6fb5
commit
fd3d510dc8
1 changed files with 5 additions and 1 deletions
|
@ -86,7 +86,11 @@ final class DifferentialDiff extends DifferentialDAO {
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getBackingVersionControlSystem() {
|
public function getBackingVersionControlSystem() {
|
||||||
$repository = $this->loadArcanistProject()->loadRepository();
|
$arcanist_project = $this->loadArcanistProject();
|
||||||
|
if (!$arcanist_project) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
$repository = $arcanist_project->loadRepository();
|
||||||
return $repository->getVersionControlSystem();
|
return $repository->getVersionControlSystem();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue