File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
app/code/Magento/AdminAdobeIms/Model Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ class Auth extends BackendAuth
32
32
public function loginByUsername (string $ username ): void
33
33
{
34
34
if (empty ($ username )) {
35
- self ::throwException (
35
+ parent ::throwException (
36
36
__ ($ this ->errorMessage )
37
37
);
38
38
}
@@ -51,7 +51,7 @@ public function loginByUsername(string $username): void
51
51
}
52
52
53
53
if (!$ this ->getAuthStorage ()->getUser ()) {
54
- self ::throwException (
54
+ parent ::throwException (
55
55
__ ($ this ->errorMessage )
56
56
);
57
57
}
@@ -66,7 +66,7 @@ public function loginByUsername(string $username): void
66
66
'backend_auth_user_login_failed ' ,
67
67
['user_name ' => $ username , 'exception ' => $ e ]
68
68
);
69
- self ::throwException (
69
+ parent ::throwException (
70
70
__ (
71
71
$ e ->getMessage ()? : $ this ->errorMessage
72
72
)
You can’t perform that action at this time.
0 commit comments