Skip to content

Commit 23954d5

Browse files
author
ogorkun
committed
MC-32830: Do not store admin and customer tokens in DB
1 parent 0e0c12e commit 23954d5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

dev/tests/api-functional/framework/Magento/TestFramework/Annotation/ApiConfigFixture.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ protected function _restoreConfigData()
108108
} else {
109109
$this->setScopeConfigValue(
110110
$configPath,
111-
$originalValue,
111+
(string)$originalValue,
112112
ScopeInterface::SCOPE_STORES,
113113
$storeCode
114114
);

lib/internal/Magento/Framework/Css/PreProcessor/Adapter/CssInliner.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ public function disableStyleBlocksParsing()
8383
*/
8484
public function process()
8585
{
86-
$emogrifier = EmogrifierCssInliner::fromHtml($this->html)
87-
->setDebug($this->appState->getMode() === State::MODE_DEVELOPER);
86+
$emogrifier = EmogrifierCssInliner::fromHtml($this->html);
87+
$emogrifier->setDebug($this->appState->getMode() === State::MODE_DEVELOPER);
8888

8989
if ($this->disableStyleBlocksParsing) {
9090
$emogrifier->disableStyleBlocksParsing();

0 commit comments

Comments
 (0)