Skip to content

Commit 3d297c4

Browse files
ENGCOM-3667: Small fix in classes #19702
- Merge Pull Request #19702 from iskolesnyk/magento2:2.3-develop-customer-login-rename-property - Merged commits: 1. 243d471
2 parents f77f96b + 243d471 commit 3d297c4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/code/Magento/Customer/Controller/Ajax/Login.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
class Login extends \Magento\Framework\App\Action\Action implements HttpPostActionInterface
2828
{
2929
/**
30-
* @var \Magento\Framework\Session\Generic
30+
* @var \Magento\Customer\Model\Session
3131
*/
32-
protected $session;
32+
protected $customerSession;
3333

3434
/**
3535
* @var AccountManagementInterface

app/code/Magento/Customer/Controller/Ajax/Logout.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
class Logout extends \Magento\Framework\App\Action\Action
1717
{
1818
/**
19-
* @var \Magento\Framework\Session\Generic
19+
* @var \Magento\Customer\Model\Session
2020
*/
21-
protected $session;
21+
protected $customerSession;
2222

2323
/**
2424
* @var \Magento\Framework\Controller\Result\JsonFactory

0 commit comments

Comments
 (0)