1<?php 2 3// TODO: Unify with similar Repository constants 4final class DifferentialRevisionControlSystem extends Phobject { 5 6 const SVN = 'svn'; 7 const GIT = 'git'; 8 const MERCURIAL = 'hg'; 9 10} 11 12