mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-01 11:12:42 +01:00
b6d745b666
Summary: All classes should extend from some other class. See D13275 for some explanation. Test Plan: `arc unit` Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D13283
10 lines
211 B
PHP
10 lines
211 B
PHP
<?php
|
|
|
|
// TODO: Unify with similar Repository constants
|
|
final class DifferentialRevisionControlSystem extends Phobject {
|
|
|
|
const SVN = 'svn';
|
|
const GIT = 'git';
|
|
const MERCURIAL = 'hg';
|
|
|
|
}
|