1 | <?php |
||
8 | class WidgetContentResolver |
||
|
|||
9 | { |
||
10 | private $widgetContentResolverChain; |
||
11 | |||
12 | public function __construct(WidgetContentResolverChain $widgetContentResolverChain) |
||
16 | |||
17 | /** |
||
18 | * Get content for the widget. |
||
19 | * |
||
20 | * @param Widget $widget |
||
21 | * |
||
22 | * @throws \Exception |
||
23 | * |
||
24 | * @return array |
||
25 | */ |
||
26 | public function getWidgetContent(Widget $widget) |
||
59 | } |
||
60 |