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