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