GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( aa6a9b...aca6d7 )
by
unknown
06:15
created
src/Event/EventInterface.php 1 patch
Doc Comments   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@  discard block
 block discarded – undo
25 25
    * Set the unit id.
26 26
    *
27 27
    * @param int $unit_id
28
+   * @return void
28 29
    */
29 30
   public function setUnitId($unit_id);
30 31
 
@@ -46,6 +47,7 @@  discard block
 block discarded – undo
46 47
    * Sets the StartDate
47 48
    *
48 49
    * @param \DateTime
50
+   * @return void
49 51
    */
50 52
   public function setStartDate(\DateTime $start_date);
51 53
 
@@ -53,6 +55,7 @@  discard block
 block discarded – undo
53 55
    * Sets the EndDate
54 56
    *
55 57
    * @param \DateTime
58
+   * @return void
56 59
    */
57 60
   public function setEndDate(\DateTime $end_date);
58 61
 
@@ -67,6 +70,7 @@  discard block
 block discarded – undo
67 70
    * Sets the event value.
68 71
    *
69 72
    * @param int $value
73
+   * @return void
70 74
    */
71 75
   public function setValue($value);
72 76
 
@@ -215,7 +219,7 @@  discard block
 block discarded – undo
215 219
 
216 220
   /**
217 221
    * Returns TRUE if the date supplied is the first month of the event
218
-   * @param $date
222
+   * @param \DateTime $date
219 223
    *
220 224
    * @return bool
221 225
    */
@@ -231,7 +235,7 @@  discard block
 block discarded – undo
231 235
 
232 236
   /**
233 237
    * Returns TRUE if the date supplied is the last month of the event
234
-   * @param $date
238
+   * @param \DateTime $date
235 239
    *
236 240
    * @return bool
237 241
    */
@@ -283,7 +287,6 @@  discard block
 block discarded – undo
283 287
   /**
284 288
    * Returns the json version of this event.
285 289
    *
286
-   * @param \Roomify\Bat\Event\EventInterface $event
287 290
    *
288 291
    * @return mixed
289 292
    */
Please login to merge, or discard this patch.