mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-20 03:31:10 +01:00
10 lines
182 B
PHP
10 lines
182 B
PHP
|
<?php
|
||
|
|
||
|
abstract class DifferentialRevisionHeraldField extends HeraldField {
|
||
|
|
||
|
public function supportsObject($object) {
|
||
|
return ($object instanceof DifferentialRevision);
|
||
|
}
|
||
|
|
||
|
}
|