| Conditions | 4 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext) |
||
| 38 | { |
||
| 39 | $class = $arguments['class']; |
||
| 40 | |||
| 41 | $content = $renderChildrenClosure(); |
||
| 42 | if (ctype_space($content) || $content === '' || $content === null) { |
||
| 43 | return ''; |
||
| 44 | } |
||
| 45 | |||
| 46 | return '<div class="' . htmlspecialchars($class) . '">' . $content . '</div>'; |
||
| 47 | } |
||
| 49 |