| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | protected function bootstrapGlyphicon($name, $style) { |
||
| 32 | |||
| 33 | $attributes = []; |
||
| 34 | |||
| 35 | $attributes["class"][] = "glyphicon"; |
||
| 36 | $attributes["class"][] = null !== $name ? "glyphicon-" . $name : null; |
||
| 37 | $attributes["aria-hidden"] = "true"; |
||
| 38 | $attributes["style"] = $style; |
||
| 39 | |||
| 40 | return static::coreHTMLElement("span", null, $attributes); |
||
| 41 | } |
||
| 42 | } |
||
| 43 |