| 1 | <?php |
||
| 7 | class Photo extends Model |
||
| 8 | { |
||
| 9 | protected $url = null; |
||
| 10 | |||
| 11 | protected $width = null; |
||
| 12 | |||
| 13 | protected $height = null; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Retrieve the url property |
||
| 17 | * |
||
| 18 | * @return string|null |
||
| 19 | */ |
||
| 20 | 6 | public function getUrl() |
|
| 24 | |||
| 25 | /** |
||
| 26 | * Retrieve the width property |
||
| 27 | * |
||
| 28 | * @return int|null |
||
| 29 | */ |
||
| 30 | 6 | public function getWidth() |
|
| 34 | |||
| 35 | /** |
||
| 36 | * Retrieve the height property |
||
| 37 | * |
||
| 38 | * @return int|null |
||
| 39 | */ |
||
| 40 | 6 | public function getHeight() |
|
| 44 | } |
||
| 45 |