mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-11 22:38:36 +01:00
20 lines
348 B
PHP
20 lines
348 B
PHP
|
<?php
|
||
|
|
||
|
final class ManiphestTransactionPro
|
||
|
extends PhabricatorApplicationTransaction {
|
||
|
|
||
|
public function getApplicationName() {
|
||
|
return 'maniphest';
|
||
|
}
|
||
|
|
||
|
public function getApplicationTransactionType() {
|
||
|
return ManiphestPHIDTypeTask::TYPECONST;
|
||
|
}
|
||
|
|
||
|
public function getApplicationTransactionCommentObject() {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|