1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-16 03:42:41 +01:00
phorge-phorge/src/applications/differential/field/DifferentialRevertPlanCommitMessageField.php

17 lines
300 B
PHP
Raw Normal View History

<?php
final class DifferentialRevertPlanCommitMessageField
extends DifferentialCommitMessageCustomField {
const FIELDKEY = 'revertPlan';
public function getFieldName() {
return pht('Revert Plan');
}
public function getCustomFieldKey() {
return 'phabricator:revert-plan';
}
}