Correct Aphlict websocket URI construction after PHP8 compatibility changes
[phabricator.git] / src / applications / search / storage / PhabricatorProfileMenuItemConfigurationTransaction.php
blob4624d6f9af00892f72cf2e1d3a79754b0773766f
1 <?php
3 final class PhabricatorProfileMenuItemConfigurationTransaction
4 extends PhabricatorApplicationTransaction {
6 const TYPE_PROPERTY = 'profilepanel.property';
7 const TYPE_ORDER = 'profilepanel.order';
8 const TYPE_VISIBILITY = 'profilepanel.visibility';
10 public function getApplicationName() {
11 return 'search';
14 public function getTableName() {
15 // At least for now, this object uses an older table name.
16 return 'search_profilepanelconfigurationtransaction';
19 public function getApplicationTransactionType() {
20 return PhabricatorProfileMenuItemPHIDType::TYPECONST;