mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-01 01:18:22 +01:00
21 lines
434 B
PHP
21 lines
434 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorEditEngineConfigurationTransaction
|
||
|
extends PhabricatorApplicationTransaction {
|
||
|
|
||
|
const TYPE_NAME = 'editengine.config.name';
|
||
|
|
||
|
public function getApplicationName() {
|
||
|
return 'search';
|
||
|
}
|
||
|
|
||
|
public function getApplicationTransactionType() {
|
||
|
return PhabricatorEditEngineConfigurationPHIDType::TYPECONST;
|
||
|
}
|
||
|
|
||
|
public function getApplicationTransactionCommentObject() {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
}
|