1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-03 04:02:43 +01:00
phorge-phorge/src/applications/differential/field/DifferentialGitSVNIDCommitMessageField.php

25 lines
388 B
PHP
Raw Normal View History

<?php
final class DifferentialGitSVNIDCommitMessageField
extends DifferentialCommitMessageField {
const FIELDKEY = 'gitSVNID';
public function getFieldName() {
return pht('git-svn-id');
}
public function getFieldOrder() {
return 900001;
}
public function isFieldEditable() {
return false;
}
public function isTemplateField() {
return false;
}
}