mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 11:22:40 +01:00
a9604c4604
Summary: Fixes T12627. Updates FundInitiative and FundBacker with modular transactions. Test Plan: Create an Initiative, back it with fake monies, close initiative, reopen, edit various fields. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T12627 Differential Revision: https://secure.phabricator.com/D17782
13 lines
206 B
PHP
13 lines
206 B
PHP
<?php
|
|
|
|
final class FundBackerRefundTransaction
|
|
extends FundBackerTransactionType {
|
|
|
|
const TRANSACTIONTYPE = 'fund:backer:refund';
|
|
|
|
public function generateOldValue($object) {
|
|
return null;
|
|
}
|
|
|
|
|
|
}
|