File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/com/magento/idea/magento2plugin
actions/generation/generator Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ protected void fillAttributes(Properties attributes) {
75
75
String viewModelClassName = viewModelFileData .getViewModelClassName ();
76
76
attributes .setProperty ("NAME" , viewModelClassName );
77
77
attributes .setProperty ("NAMESPACE" , viewModelFileData .getNamespace ());
78
- attributes .setProperty ("USE" , ViewModelPhp .INTERFACE_PATH );
78
+ attributes .setProperty ("USE" , ViewModelPhp .INTERFACE_FQN );
79
79
attributes .setProperty ("IMPLEMENTS" , ViewModelPhp .INTERFACE_NAME );
80
80
}
81
81
Original file line number Diff line number Diff line change 10
10
public class ViewModelPhp implements ModuleFileInterface {
11
11
public static String TEMPLATE = "Magento Module Common Php Class" ;
12
12
public static String DEFAULT_DIR = "ViewModel" ;
13
- public static String INTERFACE_PATH = "Magento\\ Framework\\ View\\ Element\\ Block\\ ArgumentInterface" ;
13
+ public static String INTERFACE_FQN = "Magento\\ Framework\\ View\\ Element\\ Block\\ ArgumentInterface" ;
14
14
public static String INTERFACE_NAME = "ArgumentInterface" ;
15
15
16
16
private static ViewModelPhp INSTANCE = null ;
You can’t perform that action at this time.
0 commit comments