mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-28 17:52:43 +01:00
44415c5473
Summary: Ref T5835. Show backing amounts in transactions. Account for and show refunds. Test Plan: {F215869} Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T5835 Differential Revision: https://secure.phabricator.com/D10676
21 lines
426 B
PHP
21 lines
426 B
PHP
<?php
|
|
|
|
final class FundBackerTransaction
|
|
extends PhabricatorApplicationTransaction {
|
|
|
|
const TYPE_STATUS = 'fund:backer:status';
|
|
const TYPE_REFUND = 'fund:backer:refund';
|
|
|
|
public function getApplicationName() {
|
|
return 'fund';
|
|
}
|
|
|
|
public function getApplicationTransactionType() {
|
|
return FundBackerPHIDType::TYPECONST;
|
|
}
|
|
|
|
public function getApplicationTransactionCommentObject() {
|
|
return null;
|
|
}
|
|
|
|
}
|