1 | <?php |
||
21 | class FilesystemTagEntity extends AbstractEntity |
||
22 | { |
||
23 | /** |
||
24 | * @var array |
||
25 | */ |
||
26 | protected $container = [ |
||
27 | 'id_filesystem_tag' => null, |
||
28 | 'fk_application' => null, |
||
29 | 'name' => null, |
||
30 | 'title' => null, |
||
31 | 'description' => null, |
||
32 | 'date_created' => null, |
||
33 | 'date_modified' => null, |
||
34 | ]; |
||
35 | |||
36 | /** |
||
37 | * @param int $identifier |
||
38 | * @return FilesystemTagEntity |
||
39 | */ |
||
40 | public function setFilesystemTagId(int $identifier) : FilesystemTagEntity |
||
46 | |||
47 | /** |
||
48 | * @return int|null |
||
49 | */ |
||
50 | public function getFilesystemTagId() : ? int |
||
56 | |||
57 | /** |
||
58 | * @param int $applicationIdentifier |
||
59 | * @return FilesystemTagEntity |
||
60 | */ |
||
61 | public function setApplicationId(int $applicationIdentifier) : FilesystemTagEntity |
||
67 | |||
68 | /** |
||
69 | * @return int|null |
||
70 | */ |
||
71 | public function getApplicationId() : ? int |
||
77 | |||
78 | /** |
||
79 | * @param string $name |
||
80 | * @return FilesystemTagEntity |
||
81 | */ |
||
82 | public function setName(string $name) : FilesystemTagEntity |
||
88 | |||
89 | /** |
||
90 | * @return null|string |
||
91 | */ |
||
92 | public function getName() : ? string |
||
96 | |||
97 | /** |
||
98 | * @param string $title |
||
99 | * @return FilesystemTagEntity |
||
100 | */ |
||
101 | public function setTitle(string $title) : FilesystemTagEntity |
||
107 | |||
108 | /** |
||
109 | * @return null|string |
||
110 | */ |
||
111 | public function getTitle() : ? string |
||
115 | |||
116 | /** |
||
117 | * @param string $description |
||
118 | * @return FilesystemTagEntity |
||
119 | */ |
||
120 | public function setDescription(string $description) : FilesystemTagEntity |
||
126 | |||
127 | /** |
||
128 | * @return null|string |
||
129 | */ |
||
130 | public function getDescription() : ? string |
||
134 | |||
135 | /** |
||
136 | * @param DateTime $dateTime |
||
137 | * @return FilesystemTagEntity |
||
138 | */ |
||
139 | public function setDateCreated(DateTime $dateTime) : FilesystemTagEntity |
||
145 | |||
146 | /** |
||
147 | * @return null|DateTime |
||
148 | */ |
||
149 | public function getDateCreated() : ? DateTime |
||
155 | |||
156 | /** |
||
157 | * @param DateTime $dateTime |
||
158 | * @return FilesystemTagEntity |
||
159 | */ |
||
160 | public function setDateModified(DateTime $dateTime) : FilesystemTagEntity |
||
166 | |||
167 | /** |
||
168 | * @return null|DateTime |
||
169 | */ |
||
170 | public function getDateModified() : ? DateTime |
||
176 | } |
||
177 |