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