We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a9ae1e commit 4f0a6abCopy full SHA for 4f0a6ab
app/code/Magento/User/Controller/Adminhtml/Auth/ResetPasswordPost.php
@@ -9,6 +9,7 @@
9
use Magento\User\Controller\Adminhtml\Auth;
10
use Magento\Framework\App\ObjectManager;
11
use Magento\Backend\Helper\Data;
12
+use Magento\User\Model\UserFactory;
13
14
class ResetPasswordPost extends Auth
15
{
@@ -19,10 +20,12 @@ class ResetPasswordPost extends Auth
19
20
21
/**
22
* @param Context $context
23
+ * @param UserFactory $userFactory
24
* @param Data $backendDataHelper
25
*/
26
public function __construct(
27
Context $context,
28
+ UserFactory $userFactory,
29
Data $backendDataHelper = null
30
) {
31
parent::__construct($context, $userFactory);
0 commit comments