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