| 1 | <?php |
||
| 23 | abstract class AbstractLabelTwigExtension extends AbstractTwigExtension { |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Displays a Bootstrap label. |
||
| 27 | * |
||
| 28 | * @param string|null $content The content. |
||
| 29 | * @param string|null $class The class. |
||
| 30 | * @return string Returns the Bootstrap label. |
||
| 31 | */ |
||
| 32 | protected function bootstrapLabel(?string $content, ?string $class): string { |
||
| 40 | } |
||
| 41 |