| 1 | <?php |
||
| 22 | class VideoPicture { |
||
| 23 | |||
| 24 | use IdTrait; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Number. |
||
| 28 | * |
||
| 29 | * @var int |
||
| 30 | */ |
||
| 31 | private $nr; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Picture. |
||
| 35 | * |
||
| 36 | * @var string |
||
| 37 | */ |
||
| 38 | private $picture; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Get the number. |
||
| 42 | * |
||
| 43 | * @return int Returns the number. |
||
| 44 | */ |
||
| 45 | public function getNr() { |
||
| 48 | |||
| 49 | /** |
||
| 50 | * Get the picture. |
||
| 51 | * |
||
| 52 | * @return string Returns the picture. |
||
| 53 | */ |
||
| 54 | public function getPicture() { |
||
| 57 | |||
| 58 | /** |
||
| 59 | * Set the number. |
||
| 60 | * |
||
| 61 | * @param int $nr The number. |
||
| 62 | * @return VideoPicture Returns this video picture. |
||
| 63 | */ |
||
| 64 | public function setNr($nr) { |
||
| 68 | |||
| 69 | /** |
||
| 70 | * Set the picture. |
||
| 71 | * |
||
| 72 | * @param string $picture The picture. |
||
| 73 | * @return VideoPicture Returns this picture. |
||
| 74 | */ |
||
| 75 | public function setPicture($picture) { |
||
| 79 | } |
||
| 80 |