mirror of
https://we.phorge.it/source/phorge.git
synced 2025-03-02 15:39:36 +01:00
17 lines
295 B
PHP
17 lines
295 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorSettingsAuthenticationPanelGroup
|
||
|
extends PhabricatorSettingsPanelGroup {
|
||
|
|
||
|
const PANELGROUPKEY = 'authentication';
|
||
|
|
||
|
public function getPanelGroupName() {
|
||
|
return pht('Authentication');
|
||
|
}
|
||
|
|
||
|
protected function getPanelGroupOrder() {
|
||
|
return 300;
|
||
|
}
|
||
|
|
||
|
}
|