1 | <?php |
||
19 | class ComponentLayouts |
||
20 | { |
||
21 | /** @var ComponentLayout|null */ |
||
22 | private $halfMarginBelowLayout; |
||
23 | |||
24 | /** @var ComponentLayout|null */ |
||
25 | private $marginBetweenComponents; |
||
26 | |||
27 | /** @var ComponentLayout|null */ |
||
28 | private $fullMarginBelowLayout; |
||
29 | |||
30 | /** @var ComponentLayout|null */ |
||
31 | private $fullMarginAboveHalfBelowLayout; |
||
32 | |||
33 | public function getHalfMarginBelowLayout(): ?ComponentLayout |
||
37 | |||
38 | public function setHalfMarginBelowLayout(?ComponentLayout $halfMarginBelowLayout): void |
||
42 | |||
43 | public function getMarginBetweenComponents(): ?ComponentLayout |
||
47 | |||
48 | public function setMarginBetweenComponents(?ComponentLayout $marginBetweenComponents): void |
||
52 | |||
53 | public function getFullMarginBelowLayout(): ?ComponentLayout |
||
57 | |||
58 | public function setFullMarginBelowLayout(?ComponentLayout $fullMarginBelowLayout): void |
||
62 | |||
63 | public function getFullMarginAboveHalfBelowLayout(): ?ComponentLayout |
||
67 | |||
68 | public function setFullMarginAboveHalfBelowLayout(?ComponentLayout $fullMarginAboveHalfBelowLayout): void |
||
72 | } |
||
73 |