Arrilot\Widgets\Factories\WidgetFactory::getContent PHP Метод

getContent() защищенный Метод

Make call and get return widget content.
protected getContent ( ) : mixed
Результат mixed
    protected function getContent()
    {
        $content = $this->app->call([$this->widget, 'run'], $this->widgetParams);
        return is_object($content) ? $content->__toString() : $content;
    }