Skip to content

Commit 177ada3

Browse files
committed
MC-32830: Do not store admin and customer tokens in db.
Fix static copy paste error. # Conflicts: # setup/performance-toolkit/benchmark.jmx
1 parent 05f50ad commit 177ada3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/code/Magento/Webapi/Model/Authorization/SoapUserContext.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public function __construct(
7474
/**
7575
* @inheritdoc
7676
*/
77-
public function getUserId()
77+
public function getUserId() //phpcs:ignore CopyPaste
7878
{
7979
$this->processRequest();
8080
return $this->userId;
@@ -83,7 +83,7 @@ public function getUserId()
8383
/**
8484
* @inheritdoc
8585
*/
86-
public function getUserType()
86+
public function getUserType() //phpcs:ignore CopyPaste
8787
{
8888
$this->processRequest();
8989
return $this->userType;
@@ -94,7 +94,7 @@ public function getUserType()
9494
*
9595
* @return void
9696
*/
97-
protected function processRequest()
97+
protected function processRequest() //phpcs:ignore CopyPaste
9898
{
9999
if ($this->isRequestProcessed) {
100100
return;

0 commit comments

Comments
 (0)