[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/src/applications/diffusion/request/ -> DiffusionSvnRequest.php (source)

   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  }


Generated: Sun Nov 30 09:20:46 2014 Cross-referenced by PHPXref 0.7.1