| 1 | <?php |
||
| 20 | trait TypographyTwigExtensionTrait { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Typography Twig extension. |
||
| 24 | * |
||
| 25 | * @var TypographyTwigExtension|null |
||
| 26 | */ |
||
| 27 | private $typographyTwigExtension; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Get the typography Twig extension. |
||
| 31 | * |
||
| 32 | * @return TypographyTwigExtension|null Returns the typography Twig extension. |
||
| 33 | */ |
||
| 34 | public function getTypographyTwigExtension(): ?TypographyTwigExtension { |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Set the typography Twig extension. |
||
| 40 | * |
||
| 41 | * @param TypographyTwigExtension|null $typographyTwigExtension The typography Twig extension. |
||
| 42 | * @return self Returns this instance. |
||
| 43 | */ |
||
| 44 | protected function setTypographyTwigExtension(?TypographyTwigExtension $typographyTwigExtension): self { |
||
| 48 | } |
||
| 49 |