File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
src/com/magento/idea/magento2uct/inspections/php/api Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -23,14 +23,12 @@ protected void execute(
23
23
final Project project ,
24
24
final @ NotNull ProblemsHolder problemsHolder ,
25
25
final ClassReference reference ,
26
- final String interfaceFqn
26
+ final String fqn
27
27
) {
28
- if (VersionStateManager .getInstance (project ).isApi (interfaceFqn )) {
28
+ if (VersionStateManager .getInstance (project ).isApi (fqn )) {
29
29
return ;
30
30
}
31
- final String message = SupportedIssue .INHERITED_NON_API_INTERFACE .getMessage (
32
- interfaceFqn
33
- );
31
+ final String message = SupportedIssue .INHERITED_NON_API_INTERFACE .getMessage (fqn );
34
32
35
33
if (problemsHolder instanceof UctProblemsHolder ) {
36
34
((UctProblemsHolder ) problemsHolder ).setReservedErrorCode (
You can’t perform that action at this time.
0 commit comments