We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5800333 + a622f2a commit a0a3e39Copy full SHA for a0a3e39
src/com/magento/idea/magento2plugin/actions/generation/dialog/NewControllerDialog.java
@@ -241,7 +241,10 @@ private String getNamespace() {
241
File.separator,
242
Package.fqnSeparator
243
);
244
- final String controllerPart = Package.fqnSeparator + getControllerName();
+ final String controllerPart = getControllerName().replace(
245
+ File.separator,
246
+ Package.fqnSeparator
247
+ );
248
249
return String.format(
250
"%s%s%s%s%s%s",
0 commit comments