1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-28 17:52:43 +01:00
phorge-phorge/src/applications/differential/herald/DifferentialDiffHeraldField.php

14 lines
278 B
PHP
Raw Normal View History

<?php
abstract class DifferentialDiffHeraldField extends HeraldField {
public function supportsObject($object) {
return ($object instanceof DifferentialDiff);
}
public function getFieldGroupKey() {
return DifferentialDiffHeraldFieldGroup::FIELDGROUPKEY;
}
}