mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-29 02:02:41 +01:00
29 lines
548 B
PHP
29 lines
548 B
PHP
|
<?php
|
||
|
|
||
|
final class PonderQuestionTransaction
|
||
|
extends PhabricatorApplicationTransaction {
|
||
|
|
||
|
public function getApplicationName() {
|
||
|
return 'ponder';
|
||
|
}
|
||
|
|
||
|
public function getTableName() {
|
||
|
return 'ponder_questiontransaction';
|
||
|
}
|
||
|
|
||
|
public function getApplicationTransactionType() {
|
||
|
return PonderPHIDTypeQuestion::TYPECONST;
|
||
|
}
|
||
|
|
||
|
public function getApplicationTransactionCommentObject() {
|
||
|
return new PonderQuestionTransactionComment();
|
||
|
}
|
||
|
|
||
|
public function getApplicationObjectTypeName() {
|
||
|
return pht('question');
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|