[ Index ] |
PHP Cross Reference of Phabricator |
[Summary view] [Print] [Text view]
1 <?php 2 3 final class DiffusionSvnRequest extends DiffusionRequest { 4 5 public function supportsBranches() { 6 return false; 7 } 8 9 protected function isStableCommit($symbol) { 10 return preg_match('/^[1-9]\d*\z/', $symbol); 11 } 12 13 protected function didInitialize() { 14 if ($this->path === null) { 15 $subpath = $this->repository->getDetail('svn-subpath'); 16 if ($subpath) { 17 $this->path = $subpath; 18 } 19 } 20 } 21 22 protected function getArcanistBranch() { 23 return 'svn'; 24 } 25 26 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Sun Nov 30 09:20:46 2014 | Cross-referenced by PHPXref 0.7.1 |