1 | <?php |
||
19 | class Dimension extends AbstractModel |
||
20 | { |
||
21 | /** |
||
22 | * Title. |
||
23 | * |
||
24 | * @var string |
||
25 | * @DatabaseField(type="string") |
||
26 | */ |
||
27 | protected $title; |
||
28 | |||
29 | /** |
||
30 | * Identifier. |
||
31 | * |
||
32 | * @var string |
||
33 | * @DatabaseField(type="string") |
||
34 | */ |
||
35 | protected $identifier; |
||
36 | |||
37 | /** |
||
38 | * Dimension. |
||
39 | * |
||
40 | * @var string |
||
41 | * @DatabaseField(type="string") |
||
42 | */ |
||
43 | protected $dimension; |
||
44 | |||
45 | /** |
||
46 | * @return mixed |
||
47 | */ |
||
48 | public function getTitle() |
||
52 | |||
53 | /** |
||
54 | * @param mixed $title |
||
55 | */ |
||
56 | public function setTitle($title) |
||
60 | |||
61 | /** |
||
62 | * @return mixed |
||
63 | */ |
||
64 | public function getIdentifier() |
||
68 | |||
69 | /** |
||
70 | * @param mixed $identifier |
||
71 | */ |
||
72 | public function setIdentifier($identifier) |
||
76 | |||
77 | /** |
||
78 | * @return mixed |
||
79 | */ |
||
80 | public function getDimension() |
||
84 | |||
85 | /** |
||
86 | * @param mixed $dimension |
||
87 | */ |
||
88 | public function setDimension($dimension) |
||
92 | } |
||
93 |