Skip to content

Commit 688e985

Browse files
committed
fixs to camelCase for psr
1 parent ebd7658 commit 688e985

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
'ssl.load_processing' => [__CLASS__, 'Load'],
22-
'ssl.settings' => [__CLASS__, 'Settings'],
22+
'ssl.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('ssl', 'General', 'outofstock_ssl', 'Out Of Stock Ssl', 'Enable/Disable Sales Of This Type', $settings->get_setting('OUTOFSTOCK_SSL'), array('0', '1'), array('No', 'Yes', ));
3333
}

0 commit comments

Comments
 (0)