1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-25 00:02:41 +01:00
phorge-phorge/src/applications/diffusion/herald/DiffusionPreCommitContentDiffContentRemovedHeraldField.php

21 lines
467 B
PHP
Raw Normal View History

<?php
final class DiffusionPreCommitContentDiffContentRemovedHeraldField
extends DiffusionPreCommitContentHeraldField {
const FIELDCONST = 'diffusion.pre.commit.diff.old';
public function getHeraldFieldName() {
return pht('Removed diff content');
}
public function getHeraldFieldValue($object) {
return $this->getAdapter()->getDiffContent('-');
}
protected function getHeraldFieldStandardType() {
return self::STANDARD_TEXT_MAP;
}
}