1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00

Minor, restore a missing "break;" that I derped somehow.

This commit is contained in:
epriestley 2013-11-02 18:18:12 -07:00
parent 24579e2956
commit 3dcef4f37b

View file

@ -181,6 +181,7 @@ abstract class DiffusionController extends PhabricatorController {
switch ($repository->getVersionControlSystem()) {
case PhabricatorRepositoryType::REPOSITORY_TYPE_GIT:
$result = $this->serveGitRequest($repository);
break;
default:
$result = new PhabricatorVCSResponse(
999,