Arrilot\Widgets\Factories\AbstractWidgetFactory::parseFullWidgetNameFromString PHP Method

parseFullWidgetNameFromString() protected method

Convert stuff like 'profile.feedWidget' to 'Profile\FeedWidget'.
protected parseFullWidgetNameFromString ( $widgetName ) : string
$widgetName
return string
    protected function parseFullWidgetNameFromString($widgetName)
    {
        return studly_case(str_replace('.', '\\', $widgetName));
    }