Completed
Push — fix/travis ( 3882b4...5dfd34 )
by Beñat
02:08
created
src/BenatEspina/StackExchangeApiClient/Model/AccessToken.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -63,6 +63,9 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/BenatEspina/StackExchangeApiClient/Model/Answer.php 1 patch
Doc Comments   +15 added lines patch added patch discarded remove patch
@@ -210,6 +210,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/BenatEspina/StackExchangeApiClient/Model/ShallowUser.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -110,6 +110,9 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.