mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-25 08:12:40 +01:00
29 lines
538 B
PHP
29 lines
538 B
PHP
|
<?php
|
||
|
|
||
|
final class PonderAnswerTransaction
|
||
|
extends PhabricatorApplicationTransaction {
|
||
|
|
||
|
public function getApplicationName() {
|
||
|
return 'ponder';
|
||
|
}
|
||
|
|
||
|
public function getTableName() {
|
||
|
return 'ponder_answertransaction';
|
||
|
}
|
||
|
|
||
|
public function getApplicationTransactionType() {
|
||
|
return PonderPHIDTypeAnswer::TYPECONST;
|
||
|
}
|
||
|
|
||
|
public function getApplicationTransactionCommentObject() {
|
||
|
return new PonderAnswerTransactionComment();
|
||
|
}
|
||
|
|
||
|
public function getApplicationObjectTypeName() {
|
||
|
return pht('answer');
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|