Skip to content

Commit 05dadd8

Browse files
committed
#19359: Fixed static tests
1 parent 8b30520 commit 05dadd8

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

app/code/Magento/Customer/CustomerData/Plugin/SessionChecker.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
use Magento\Framework\Stdlib\Cookie\CookieMetadataFactory;
1010
use Magento\Framework\Stdlib\Cookie\PhpCookieManager;
1111

12+
/**
13+
* Class SessionChecker
14+
*/
1215
class SessionChecker
1316
{
1417
/**
@@ -38,6 +41,8 @@ public function __construct(
3841
*
3942
* @param SessionManagerInterface $sessionManager
4043
* @return void
44+
* @throws \Magento\Framework\Exception\InputException
45+
* @throws \Magento\Framework\Stdlib\Cookie\FailureToSendException
4146
*/
4247
public function beforeStart(SessionManagerInterface $sessionManager)
4348
{
@@ -49,4 +54,4 @@ public function beforeStart(SessionManagerInterface $sessionManager)
4954
$this->cookieManager->deleteCookie('mage-cache-sessid', $metadata);
5055
}
5156
}
52-
}
57+
}

app/code/Magento/Paypal/Controller/Transparent/RequestSecureToken.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class RequestSecureToken extends \Magento\Framework\App\Action\Action implements
5757
* @param SecureToken $secureTokenService
5858
* @param SessionManager $sessionManager
5959
* @param Transparent $transparent
60-
* @param SessionManagerInterface|null $sessionManagerInterface
60+
* @param SessionManagerInterface|null $sessionInterface
6161
*/
6262
public function __construct(
6363
Context $context,
@@ -122,4 +122,4 @@ private function getErrorResponse()
122122
]
123123
);
124124
}
125-
}
125+
}

lib/internal/Magento/Framework/View/Context.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,8 @@ public function getModuleName()
335335
}
336336

337337
/**
338+
* Get Front Name
339+
*
338340
* @see getModuleName
339341
*/
340342
public function getFrontName()

0 commit comments

Comments
 (0)