mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-03 04:02:43 +01:00
19 lines
339 B
PHP
19 lines
339 B
PHP
|
<?php
|
||
|
|
||
|
final class FundBackingTransaction
|
||
|
extends PhabricatorApplicationTransaction {
|
||
|
|
||
|
public function getApplicationName() {
|
||
|
return 'fund';
|
||
|
}
|
||
|
|
||
|
public function getApplicationTransactionType() {
|
||
|
return FundBackingPHIDType::TYPECONST;
|
||
|
}
|
||
|
|
||
|
public function getApplicationTransactionCommentObject() {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
}
|