| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 40 | public function run() |
||
| 41 | { |
||
| 42 | $this->initCarouselJs(); |
||
| 43 | $out = Html::beginTag($this->containerTag, array_merge($this->containerOptions, $this->defaultContainerOptions)); |
||
| 44 | foreach ($this->items as $item) { |
||
| 45 | $out .= $item; |
||
| 46 | } |
||
| 47 | $out .= Html::endTag($this->containerTag); |
||
| 48 | |||
| 49 | return $out; |
||
| 50 | } |
||
| 51 | |||
| 58 |