Add SVN support to PHPCI.

Closes #759
This commit is contained in:
Dzhilkibaev Nadir 2015-01-26 21:12:48 +03:00 committed by Dan Cryer
commit 35a6d1f577
4 changed files with 188 additions and 1 deletions

View file

@ -61,6 +61,9 @@ class BuildFactory
case 'hg':
$type = 'MercurialBuild';
break;
case 'svn':
$type = 'SubversionBuild';
break;
}
$type = '\\PHPCI\\Model\\Build\\' . $type;