@@ -87,6 +87,9 @@ discard block |
||
87 | 87 | $this->addItem($function($object)); |
88 | 88 | } |
89 | 89 | |
90 | + /** |
|
91 | + * @param \Closure $callBack |
|
92 | + */ |
|
90 | 93 | public function apply($callBack){ |
91 | 94 | foreach ($this->content as $item){ |
92 | 95 | $callBack($item); |
@@ -102,7 +105,7 @@ discard block |
||
102 | 105 | } |
103 | 106 | /** |
104 | 107 | * The item factory |
105 | - * @param string|HtmlDoubleElement $value |
|
108 | + * @param string $value |
|
106 | 109 | */ |
107 | 110 | protected abstract function createItem($value); |
108 | 111 |
@@ -19,8 +19,9 @@ |
||
19 | 19 | if(\is_array($value)){ |
20 | 20 | $item=new HtmlListItem("item-".$this->identifier."-".$count, $value[0]); |
21 | 21 | $item->addIcon($value[1]); |
22 | - }else |
|
23 | - $item= new HtmlListItem("item-".$this->identifier."-".$count, $value); |
|
22 | + } else { |
|
23 | + $item= new HtmlListItem("item-".$this->identifier."-".$count, $value); |
|
24 | + } |
|
24 | 25 | return $item; |
25 | 26 | } |
26 | 27 |