1 | <?php |
||
20 | trait MinWidthTrait { |
||
21 | |||
22 | /** |
||
23 | * Min width. |
||
24 | * |
||
25 | * @var int |
||
26 | */ |
||
27 | private $minWidth; |
||
28 | |||
29 | /** |
||
30 | * Get the min width. |
||
31 | * |
||
32 | * @return int Returns the min width. |
||
33 | */ |
||
34 | public function getMinWidth() { |
||
37 | |||
38 | /** |
||
39 | * Set the min width. |
||
40 | * |
||
41 | * @param int $minWidth The min width. |
||
42 | */ |
||
43 | public function setMinWidth($minWidth) { |
||
47 | } |
||
48 |