mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-28 17:52:43 +01:00
98ac0a022c
Summary: Ref T8726. Test Plan: Created a giant rule with every commit field: {F594686} Ran the upgrade, got the same rule with new fields: {F594688} Used "Test Console" to run transcripts, saw all the fields populate correctly. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T8726 Differential Revision: https://secure.phabricator.com/D13567
9 lines
184 B
PHP
9 lines
184 B
PHP
<?php
|
|
|
|
abstract class DiffusionCommitHeraldField extends HeraldField {
|
|
|
|
public function supportsObject($object) {
|
|
return ($object instanceof PhabricatorRepositoryCommit);
|
|
}
|
|
|
|
}
|