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