1 | <?php |
||
17 | class FileMetadata extends AbstractModel |
||
18 | { |
||
19 | /** |
||
20 | * Focus point Y. |
||
21 | * |
||
22 | * @var int |
||
23 | * @DatabaseField(type="int") |
||
24 | */ |
||
25 | protected $focusPointY; |
||
26 | |||
27 | /** |
||
28 | * Focus point X. |
||
29 | * |
||
30 | * @var int |
||
31 | * @DatabaseField(type="int") |
||
32 | */ |
||
33 | protected $focusPointX; |
||
34 | |||
35 | /** |
||
36 | * Get Y. |
||
37 | * |
||
38 | * @return int |
||
39 | */ |
||
40 | public function getFocusPointY() |
||
44 | |||
45 | /** |
||
46 | * Set Y. |
||
47 | * |
||
48 | * @param int $focusPointY |
||
49 | */ |
||
50 | public function setFocusPointY($focusPointY) |
||
54 | |||
55 | /** |
||
56 | * Get X. |
||
57 | * |
||
58 | * @return int |
||
59 | */ |
||
60 | public function getFocusPointX() |
||
64 | |||
65 | /** |
||
66 | * Set X. |
||
67 | * |
||
68 | * @param int $focusPointX |
||
69 | */ |
||
70 | public function setFocusPointX($focusPointX) |
||
74 | } |
||
75 |