1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-15 11:22:40 +01:00
phorge-phorge/src/applications/differential/field/DifferentialConflictsCommitMessageField.php

25 lines
389 B
PHP
Raw Normal View History

<?php
final class DifferentialConflictsCommitMessageField
extends DifferentialCommitMessageField {
const FIELDKEY = 'conflicts';
public function getFieldName() {
return pht('Conflicts');
}
public function getFieldOrder() {
return 900000;
}
public function isFieldEditable() {
return false;
}
public function isTemplateField() {
return false;
}
}