1 | <?php |
||
19 | class ComponentLayouts |
||
20 | { |
||
21 | /** @var ComponentLayout|null */ |
||
22 | private $halfMarginBelowLayout; |
||
23 | |||
24 | /** @var ComponentLayout|null */ |
||
25 | private $marginBetweenComponents; |
||
26 | |||
27 | public function getHalfMarginBelowLayout(): ?ComponentLayout |
||
31 | |||
32 | public function setHalfMarginBelowLayout(?ComponentLayout $halfMarginBelowLayout): void |
||
36 | |||
37 | public function getMarginBetweenComponents(): ?ComponentLayout |
||
41 | |||
42 | public function setMarginBetweenComponents(?ComponentLayout $marginBetweenComponents): void |
||
46 | } |
||
47 |