Skip to content

Commit e27d840

Browse files
authored
Update AbstractWidgetFactory.php
== bugfix === before modules.abcdefg.widgets.helloworld => Modules\abcdefg.widgets.helloworld === after modules.abcdefg.widgets.helloworld => Modules\Abcdefg.Widgets.Helloworld
1 parent 7c99f18 commit e27d840

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Factories/AbstractWidgetFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ protected function instantiateWidget(array $params = [])
149149
*/
150150
protected function parseFullWidgetNameFromString($widgetName)
151151
{
152-
return studly_case(str_replace('.', '\\', $widgetName));
152+
return studly_case(str_replace('.', '\\_', $widgetName));
153153
}
154154

155155
/**

0 commit comments

Comments
 (0)