Skip to content

Commit 737a79e

Browse files
sivaschenkomage2pratik
authored andcommitted
magento#19359: Fixed static tests
1 parent f5df1a8 commit 737a79e

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
@@ -56,7 +56,7 @@ class RequestSecureToken extends \Magento\Framework\App\Action\Action
5656
* @param SecureToken $secureTokenService
5757
* @param SessionManager $sessionManager
5858
* @param Transparent $transparent
59-
* @param SessionManagerInterface|null $sessionManagerInterface
59+
* @param SessionManagerInterface|null $sessionInterface
6060
*/
6161
public function __construct(
6262
Context $context,
@@ -123,4 +123,4 @@ private function getErrorResponse()
123123
]
124124
);
125125
}
126-
}
126+
}

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)