Completed
Push — master ( 68052c...3d81fc )
by WEBEWEB
03:35
created

Notes::setIntitule()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
/*
4
 * This file is part of the core-library package.
5
 *
6
 * (c) 2018 WEBEWEB
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace WBW\Library\Core\ThirdParty\Quadratus\Model\QGI;
13
14
use DateTime;
15
16
/**
17
 * Notes.
18
 *
19
 * @author webeweb <https://github.com/webeweb/>
20
 * @package WBW\Library\Core\ThirdParty\Quadratus\Model\QGI
21
 */
22
class Notes {
23
24
    /**
25
     * Code categorie.
26
     *
27
     * @var string|null
28
     */
29
    private $codeCategorie;
30
31
    /**
32
     * Code collaborateur.
33
     *
34
     * @var string|null
35
     */
36
    private $codeCollaborateur;
37
38
    /**
39
     * Code collaborateur modif.
40
     *
41
     * @var string|null
42
     */
43
    private $codeCollaborateurModif;
44
45
    /**
46
     * Date creation.
47
     *
48
     * @var DateTime|null
49
     */
50
    private $dateCreation;
51
52
    /**
53
     * Date modification.
54
     *
55
     * @var DateTime|null
56
     */
57
    private $dateModification;
58
59
    /**
60
     * Date rappel.
61
     *
62
     * @var DateTime|null
63
     */
64
    private $dateRappel;
65
66
    /**
67
     * Envoi post it.
68
     *
69
     * @var bool|null
70
     */
71
    private $envoiPostIt;
72
73
    /**
74
     * Intitule.
75
     *
76
     * @var string|null
77
     */
78
    private $intitule;
79
80
    /**
81
     * Num uniq.
82
     *
83
     * @var string|null
84
     */
85
    private $numUniq;
86
87
    /**
88
     * Titre.
89
     *
90
     * @var string|null
91
     */
92
    private $titre;
93
94
    /**
95
     * Constructor.
96
     */
97
    public function __construct() {
98
        // NOTHING TO DO
99
    }
100
101
    /**
102
     * Get the code categorie.
103
     *
104
     * @return string|null Returns the code categorie.
105
     */
106
    public function getCodeCategorie(): ?string {
107
        return $this->codeCategorie;
108
    }
109
110
    /**
111
     * Get the code collaborateur.
112
     *
113
     * @return string|null Returns the code collaborateur.
114
     */
115
    public function getCodeCollaborateur(): ?string {
116
        return $this->codeCollaborateur;
117
    }
118
119
    /**
120
     * Get the code collaborateur modif.
121
     *
122
     * @return string|null Returns the code collaborateur modif.
123
     */
124
    public function getCodeCollaborateurModif(): ?string {
125
        return $this->codeCollaborateurModif;
126
    }
127
128
    /**
129
     * Get the date creation.
130
     *
131
     * @return DateTime|null Returns the date creation.
132
     */
133
    public function getDateCreation(): ?DateTime {
134
        return $this->dateCreation;
135
    }
136
137
    /**
138
     * Get the date modification.
139
     *
140
     * @return DateTime|null Returns the date modification.
141
     */
142
    public function getDateModification(): ?DateTime {
143
        return $this->dateModification;
144
    }
145
146
    /**
147
     * Get the date rappel.
148
     *
149
     * @return DateTime|null Returns the date rappel.
150
     */
151
    public function getDateRappel(): ?DateTime {
152
        return $this->dateRappel;
153
    }
154
155
    /**
156
     * Get the envoi post it.
157
     *
158
     * @return bool|null Returns the envoi post it.
159
     */
160
    public function getEnvoiPostIt(): ?bool {
161
        return $this->envoiPostIt;
162
    }
163
164
    /**
165
     * Get the intitule.
166
     *
167
     * @return string|null Returns the intitule.
168
     */
169
    public function getIntitule(): ?string {
170
        return $this->intitule;
171
    }
172
173
    /**
174
     * Get the num uniq.
175
     *
176
     * @return string|null Returns the num uniq.
177
     */
178
    public function getNumUniq(): ?string {
179
        return $this->numUniq;
180
    }
181
182
    /**
183
     * Get the titre.
184
     *
185
     * @return string|null Returns the titre.
186
     */
187
    public function getTitre(): ?string {
188
        return $this->titre;
189
    }
190
191
    /**
192
     * Set the code categorie.
193
     *
194
     * @param string|null $codeCategorie The code categorie.
195
     * @return Notes Returns this Notes.
196
     */
197
    public function setCodeCategorie(?string $codeCategorie): Notes {
198
        $this->codeCategorie = $codeCategorie;
199
        return $this;
200
    }
201
202
    /**
203
     * Set the code collaborateur.
204
     *
205
     * @param string|null $codeCollaborateur The code collaborateur.
206
     * @return Notes Returns this Notes.
207
     */
208
    public function setCodeCollaborateur(?string $codeCollaborateur): Notes {
209
        $this->codeCollaborateur = $codeCollaborateur;
210
        return $this;
211
    }
212
213
    /**
214
     * Set the code collaborateur modif.
215
     *
216
     * @param string|null $codeCollaborateurModif The code collaborateur modif.
217
     * @return Notes Returns this Notes.
218
     */
219
    public function setCodeCollaborateurModif(?string $codeCollaborateurModif): Notes {
220
        $this->codeCollaborateurModif = $codeCollaborateurModif;
221
        return $this;
222
    }
223
224
    /**
225
     * Set the date creation.
226
     *
227
     * @param DateTime|null $dateCreation The date creation.
228
     * @return Notes Returns this Notes.
229
     */
230
    public function setDateCreation(?DateTime $dateCreation): Notes {
231
        $this->dateCreation = $dateCreation;
232
        return $this;
233
    }
234
235
    /**
236
     * Set the date modification.
237
     *
238
     * @param DateTime|null $dateModification The date modification.
239
     * @return Notes Returns this Notes.
240
     */
241
    public function setDateModification(?DateTime $dateModification): Notes {
242
        $this->dateModification = $dateModification;
243
        return $this;
244
    }
245
246
    /**
247
     * Set the date rappel.
248
     *
249
     * @param DateTime|null $dateRappel The date rappel.
250
     * @return Notes Returns this Notes.
251
     */
252
    public function setDateRappel(?DateTime $dateRappel): Notes {
253
        $this->dateRappel = $dateRappel;
254
        return $this;
255
    }
256
257
    /**
258
     * Set the envoi post it.
259
     *
260
     * @param bool|null $envoiPostIt The envoi post it.
261
     * @return Notes Returns this Notes.
262
     */
263
    public function setEnvoiPostIt(?bool $envoiPostIt): Notes {
264
        $this->envoiPostIt = $envoiPostIt;
265
        return $this;
266
    }
267
268
    /**
269
     * Set the intitule.
270
     *
271
     * @param string|null $intitule The intitule.
272
     * @return Notes Returns this Notes.
273
     */
274
    public function setIntitule(?string $intitule): Notes {
275
        $this->intitule = $intitule;
276
        return $this;
277
    }
278
279
    /**
280
     * Set the num uniq.
281
     *
282
     * @param string|null $numUniq The num uniq.
283
     * @return Notes Returns this Notes.
284
     */
285
    public function setNumUniq(?string $numUniq): Notes {
286
        $this->numUniq = $numUniq;
287
        return $this;
288
    }
289
290
    /**
291
     * Set the titre.
292
     *
293
     * @param string|null $titre The titre.
294
     * @return Notes Returns this Notes.
295
     */
296
    public function setTitre(?string $titre): Notes {
297
        $this->titre = $titre;
298
        return $this;
299
    }
300
}
301