|
@@ -52,6 +52,12 @@ class ElementTagsProposition
|
52
|
52
|
*/
|
53
|
53
|
protected $tags;
|
54
|
54
|
|
|
55
|
+ /**
|
|
56
|
+ * @var datetime $created
|
|
57
|
+ *
|
|
58
|
+ * @ORM\Column(type="datetime")
|
|
59
|
+ */
|
|
60
|
+ private $created;
|
55
|
61
|
// /**
|
56
|
62
|
// * @var datetime $created
|
57
|
63
|
// *
|
|
@@ -79,26 +85,26 @@ class ElementTagsProposition
|
79
|
85
|
return $this->id;
|
80
|
86
|
}
|
81
|
87
|
|
82
|
|
-// /**
|
83
|
|
-// * Set created
|
84
|
|
-// *
|
85
|
|
-// * @param datetime $created
|
86
|
|
-// */
|
87
|
|
-// public function setCreated($created)
|
88
|
|
-// {
|
89
|
|
-// $this->created = $created;
|
90
|
|
-// }
|
91
|
|
-//
|
92
|
|
-// /**
|
93
|
|
-// * Get created
|
94
|
|
-// *
|
95
|
|
-// * @return datetime
|
96
|
|
-// */
|
97
|
|
-// public function getCreated()
|
98
|
|
-// {
|
99
|
|
-// return $this->created;
|
100
|
|
-// }
|
101
|
|
-//
|
|
88
|
+ /**
|
|
89
|
+ * Set created
|
|
90
|
+ *
|
|
91
|
+ * @param datetime $created
|
|
92
|
+ */
|
|
93
|
+ public function setCreated($created)
|
|
94
|
+ {
|
|
95
|
+ $this->created = $created;
|
|
96
|
+ }
|
|
97
|
+
|
|
98
|
+ /**
|
|
99
|
+ * Get created
|
|
100
|
+ *
|
|
101
|
+ * @return datetime
|
|
102
|
+ */
|
|
103
|
+ public function getCreated()
|
|
104
|
+ {
|
|
105
|
+ return $this->created;
|
|
106
|
+ }
|
|
107
|
+
|
102
|
108
|
// /**
|
103
|
109
|
// * Set updated
|
104
|
110
|
// *
|