Skip to content

Commit 4f0a6ab

Browse files
AnshuMishra17gelanivishal
authored andcommitted
missing parameter correction
1 parent 0a9ae1e commit 4f0a6ab

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

app/code/Magento/User/Controller/Adminhtml/Auth/ResetPasswordPost.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
use Magento\User\Controller\Adminhtml\Auth;
1010
use Magento\Framework\App\ObjectManager;
1111
use Magento\Backend\Helper\Data;
12+
use Magento\User\Model\UserFactory;
1213

1314
class ResetPasswordPost extends Auth
1415
{
@@ -19,10 +20,12 @@ class ResetPasswordPost extends Auth
1920

2021
/**
2122
* @param Context $context
23+
* @param UserFactory $userFactory
2224
* @param Data $backendDataHelper
2325
*/
2426
public function __construct(
2527
Context $context,
28+
UserFactory $userFactory,
2629
Data $backendDataHelper = null
2730
) {
2831
parent::__construct($context, $userFactory);

0 commit comments

Comments
 (0)