Skip to content

Commit cbc1b45

Browse files
committed
fixs to camelCase for psr
1 parent a346e0a commit cbc1b45

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Plugin.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ public function __construct() {
1919
public static function getHooks() {
2020
return [
2121
'servers.load_processing' => [__CLASS__, 'Load'],
22-
'servers.settings' => [__CLASS__, 'Settings'],
22+
'servers.settings' => [__CLASS__, 'getSettings'],
2323
];
2424
}
2525

2626
public static function Load(GenericEvent $event) {
2727

2828
}
2929

30-
public static function Settings(GenericEvent $event) {
30+
public static function getSettings(GenericEvent $event) {
3131
$settings = $event->getSubject();
3232
$settings->add_dropdown_setting('servers', 'General', 'outofstock_servers', 'Out Of Stock Servers', 'Enable/Disable Sales Of This Type', $settings->get_setting('OUTOFSTOCK_SERVERS'), array('0', '1'), array('No', 'Yes', ));
3333
}

0 commit comments

Comments
 (0)