@@ -63,6 +63,9 @@ |
||
63 | 63 | return $this->accountId; |
64 | 64 | } |
65 | 65 | |
66 | + /** |
|
67 | + * @param \DateTimeImmutable|null $expiresOnDate |
|
68 | + */ |
|
66 | 69 | public function setExpiresOnDate(?\DateTimeInterface $expiresOnDate) : self |
67 | 70 | { |
68 | 71 | $this->expiresOnDate = $expiresOnDate; |
@@ -210,6 +210,9 @@ discard block |
||
210 | 210 | return $this->communityOwnedDate; |
211 | 211 | } |
212 | 212 | |
213 | + /** |
|
214 | + * @param \DateTimeImmutable|null $communityOwnedDate |
|
215 | + */ |
|
213 | 216 | public function setCommunityOwnedDate(?\DateTimeInterface $communityOwnedDate) : self |
214 | 217 | { |
215 | 218 | $this->communityOwnedDate = $communityOwnedDate; |
@@ -222,6 +225,9 @@ discard block |
||
222 | 225 | return $this->lockedDate; |
223 | 226 | } |
224 | 227 | |
228 | + /** |
|
229 | + * @param \DateTime|null $lockedDate |
|
230 | + */ |
|
225 | 231 | public function setLockedDate(?\DateTimeInterface $lockedDate) : self |
226 | 232 | { |
227 | 233 | $this->lockedDate = $lockedDate; |
@@ -318,6 +324,9 @@ discard block |
||
318 | 324 | return $this->lastEditDate; |
319 | 325 | } |
320 | 326 | |
327 | + /** |
|
328 | + * @param \DateTimeImmutable|null $lastEditDate |
|
329 | + */ |
|
321 | 330 | public function setLastEditDate(?\DateTimeInterface $lastEditDate) : self |
322 | 331 | { |
323 | 332 | $this->lastEditDate = $lastEditDate; |
@@ -330,6 +339,9 @@ discard block |
||
330 | 339 | return $this->lastEditor; |
331 | 340 | } |
332 | 341 | |
342 | + /** |
|
343 | + * @param ShallowUser|null $lastEditor |
|
344 | + */ |
|
333 | 345 | public function setLastEditor(?ShallowUser $lastEditor) : self |
334 | 346 | { |
335 | 347 | $this->lastEditor = $lastEditor; |
@@ -414,6 +426,9 @@ discard block |
||
414 | 426 | return $this->owner; |
415 | 427 | } |
416 | 428 | |
429 | + /** |
|
430 | + * @param ShallowUser|null $owner |
|
431 | + */ |
|
417 | 432 | public function setOwner(?ShallowUser $owner) : self |
418 | 433 | { |
419 | 434 | $this->owner = $owner; |
@@ -110,6 +110,9 @@ |
||
110 | 110 | return $this->badgeCounts; |
111 | 111 | } |
112 | 112 | |
113 | + /** |
|
114 | + * @param BadgeCount|null $badgeCounts |
|
115 | + */ |
|
113 | 116 | public function setBadgeCounts($badgeCounts) |
114 | 117 | { |
115 | 118 | $this->badgeCounts = $badgeCounts; |