1 | <?php |
||
9 | class RelatedPosition implements RelatedPositionInterface |
||
10 | { |
||
11 | /** @var Widget */ |
||
12 | public $widget; |
||
13 | |||
14 | /** @inheritDoc */ |
||
15 | public function setWidget($type, array $params = []): RelatedPositionInterface |
||
16 | { |
||
17 | $this->widget = Yii::createObject($type, $params); |
||
18 | |||
19 | return $this; |
||
20 | } |
||
21 | |||
22 | /** @inheritDoc */ |
||
23 | public function render(): string |
||
27 | } |
||
28 |