1 | <?php |
||
25 | abstract class AbstractBadgeTwigExtension extends AbstractTwigExtension { |
||
26 | |||
27 | /** |
||
28 | * Displays a Bootstrap badge. |
||
29 | * |
||
30 | * @param BadgeInterface $badge The badge. |
||
31 | * @return string Returns the Bootstrap badge. |
||
32 | */ |
||
33 | protected function bootstrapBadge(BadgeInterface $badge): string { |
||
45 | } |
||
46 |