File tree Expand file tree Collapse file tree 1 file changed +0
-10
lines changed
app/code/Magento/User/Observer/Backend Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -35,13 +35,6 @@ class TrackAdminNewPasswordObserver implements ObserverInterface
35
35
*/
36
36
protected $ authSession ;
37
37
38
- /**
39
- * Encryption model
40
- *
41
- * @var \Magento\Framework\Encryption\EncryptorInterface
42
- */
43
- protected $ encryptor ;
44
-
45
38
/**
46
39
* Message manager interface
47
40
*
@@ -53,20 +46,17 @@ class TrackAdminNewPasswordObserver implements ObserverInterface
53
46
* @param \Magento\User\Model\Backend\Config\ObserverConfig $observerConfig
54
47
* @param \Magento\User\Model\ResourceModel\User $userResource
55
48
* @param \Magento\Backend\Model\Auth\Session $authSession
56
- * @param \Magento\Framework\Encryption\EncryptorInterface $encryptor
57
49
* @param \Magento\Framework\Message\ManagerInterface $messageManager
58
50
*/
59
51
public function __construct (
60
52
\Magento \User \Model \Backend \Config \ObserverConfig $ observerConfig ,
61
53
\Magento \User \Model \ResourceModel \User $ userResource ,
62
54
\Magento \Backend \Model \Auth \Session $ authSession ,
63
- \Magento \Framework \Encryption \EncryptorInterface $ encryptor ,
64
55
\Magento \Framework \Message \ManagerInterface $ messageManager
65
56
) {
66
57
$ this ->observerConfig = $ observerConfig ;
67
58
$ this ->userResource = $ userResource ;
68
59
$ this ->authSession = $ authSession ;
69
- $ this ->encryptor = $ encryptor ; // no longer used
70
60
$ this ->messageManager = $ messageManager ;
71
61
}
72
62
You can’t perform that action at this time.
0 commit comments