Skip to content

Commit e7f7d9a

Browse files
Merge pull request #392 from jonasdekeukelaere/fixes
phpcs
2 parents 35a5e23 + 5d5c90a commit e7f7d9a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Backend/Modules/Settings/Actions/Index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ private function loadForm(): void
338338
);
339339

340340
if ($level === ConsentDialog::CONSENT_FUNCTIONALITY_STORAGE) {
341-
$checkbox->setAttribute('disabled', 'disabled');
341+
$checkbox->setAttribute('disabled', 'disabled');
342342
}
343343
}
344344
$this->template->assign('privacy_consent_levels', ConsentDialog::getConsentLevels());

src/ForkCMS/Privacy/ConsentDialog.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public function getLevels(bool $includeFunctional = false): array
8080
$defaultValue = $level === self::CONSENT_FUNCTIONALITY_STORAGE;
8181
if ($this->settings->get('Core', 'privacy_consent_level_' . $level, $defaultValue)) {
8282
$levels[] = $level;
83-
}
83+
}
8484
}
8585

8686
return $levels;

0 commit comments

Comments
 (0)