mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 11:22:40 +01:00
19 lines
378 B
PHP
19 lines
378 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorProfilePanelConfigurationTransaction
|
||
|
extends PhabricatorApplicationTransaction {
|
||
|
|
||
|
public function getApplicationName() {
|
||
|
return 'search';
|
||
|
}
|
||
|
|
||
|
public function getApplicationTransactionType() {
|
||
|
return PhabricatorProfilePanelPHIDType::TYPECONST;
|
||
|
}
|
||
|
|
||
|
public function getApplicationTransactionCommentObject() {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
}
|