Convert variable names to camel case

[MAILPOET-1796]
This commit is contained in:
Jan Jakeš
2020-01-09 15:02:58 +01:00
committed by Jan Jakeš
parent f5da704106
commit 54549ff037
687 changed files with 15890 additions and 15887 deletions

View File

@@ -24,7 +24,7 @@ class WoocommerceSettings extends APIEndpoint {
public function set($data = []) {
foreach ($data as $option => $value) {
if (in_array($option, $this->allowed_settings)) {
if (in_array($option, $this->allowedSettings)) {
$this->wp->updateOption($option, $value);
}
}