mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-03 20:22:46 +01:00
13 lines
206 B
PHP
13 lines
206 B
PHP
|
<?php
|
||
|
|
||
|
final class DifferentialGitSVNIDCommitMessageField
|
||
|
extends DifferentialCommitMessageField {
|
||
|
|
||
|
const FIELDKEY = 'gitSVNID';
|
||
|
|
||
|
public function getFieldName() {
|
||
|
return pht('git-svn-id');
|
||
|
}
|
||
|
|
||
|
}
|