File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
app/code/Magento/User/Controller/Adminhtml/User Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -22,10 +22,18 @@ class InvalidateToken extends \Magento\User\Controller\Adminhtml\User
22
22
/**
23
23
* Inject dependencies.
24
24
*
25
+ * @param \Magento\Backend\App\Action\Context $context
26
+ * @param \Magento\Framework\Registry $coreRegistry
27
+ * @param \Magento\User\Model\UserFactory $userFactory
25
28
* @param AdminTokenServiceInterface $tokenService
26
29
*/
27
- public function __construct (AdminTokenServiceInterface $ tokenService )
28
- {
30
+ public function __construct (
31
+ AdminTokenServiceInterface $ tokenService ,
32
+ \Magento \Backend \App \Action \Context $ context ,
33
+ \Magento \Framework \Registry $ coreRegistry ,
34
+ \Magento \User \Model \UserFactory $ userFactory
35
+ ) {
36
+ parent ::__construct ($ context , $ coreRegistry , $ userFactory );
29
37
$ this ->tokenService = $ tokenService ;
30
38
}
31
39
You can’t perform that action at this time.
0 commit comments