| 1 | <?php |
||
| 24 | final class ItalicTypographyTwigExtension extends AbstractTypographyTwigExtension { |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Service name. |
||
| 28 | * |
||
| 29 | * @var string |
||
| 30 | */ |
||
| 31 | const SERVICE_NAME = "webeweb.bundle.bootstrapbundle.twig.extension.typography.italic"; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Displays a Bootstrap italic text. |
||
| 35 | * |
||
| 36 | * @param array $args The arguments. |
||
| 37 | * @return string Returns the Bootstrap italic text. |
||
| 38 | */ |
||
| 39 | public function bootstrapItalicFunction(array $args = []) { |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Get the Twig functions. |
||
| 45 | * |
||
| 46 | * @return array Returns the Twig functions. |
||
| 47 | */ |
||
| 48 | public function getFunctions() { |
||
| 53 | |||
| 54 | } |
||
| 55 |