| 1 | <?php |
||
| 17 | class Content extends AbstractModel |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * Image ratio. |
||
| 21 | * |
||
| 22 | * @var string |
||
| 23 | * @DatabaseField(type="string") |
||
| 24 | */ |
||
| 25 | protected $imageRatio; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Get image ratio. |
||
| 29 | * |
||
| 30 | * @return string |
||
| 31 | */ |
||
| 32 | public function getImageRatio() |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Set image ratio. |
||
| 39 | * |
||
| 40 | * @param string $imageRatio |
||
| 41 | */ |
||
| 42 | public function setImageRatio($imageRatio) |
||
| 46 | } |
||
| 47 |