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