1 | <?php |
||
19 | class Customizable extends AbstractModel |
||
20 | { |
||
21 | /** |
||
22 | * @var string|null |
||
23 | */ |
||
24 | private $value; |
||
25 | |||
26 | /** |
||
27 | * @var string|null |
||
28 | */ |
||
29 | private $type; |
||
30 | |||
31 | /** |
||
32 | * @var string|null |
||
33 | */ |
||
34 | private $creator; |
||
35 | |||
36 | /** |
||
37 | * @var \DateTime|null |
||
38 | */ |
||
39 | private $lastSet; |
||
40 | |||
41 | /** |
||
42 | * @return string The value of this customizable |
||
43 | */ |
||
44 | 16 | public function getValue() |
|
48 | |||
49 | /** |
||
50 | * @return string|null |
||
51 | */ |
||
52 | 15 | public function getType() |
|
56 | |||
57 | /** |
||
58 | * @return string|null |
||
59 | */ |
||
60 | 16 | public function getCreator() |
|
64 | |||
65 | /** |
||
66 | * Returns the last date on which this customizable was customized ^_^, |
||
67 | * or null if this was the first change. |
||
68 | * |
||
69 | * @return \DateTime|null |
||
70 | */ |
||
71 | 16 | public function getLastSet() |
|
75 | } |
||
76 |