| 1 | <?php |
||
| 23 | abstract class AbstractButtonGroupTwigExtension extends AbstractTwigExtension { |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Displays a Bootstrap button group. |
||
| 27 | * |
||
| 28 | * @param string|null $class The class. |
||
| 29 | * @param string|null $role The role. |
||
| 30 | * @param array $buttons The buttons. |
||
| 31 | * @return string Returns the Bootstrap button group. |
||
| 32 | */ |
||
| 33 | protected function bootstrapButtonGroup(?string $class, ?string $role, array $buttons): string { |
||
| 44 | } |
||
| 45 |