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 ( f67dca...fa525c )
by
unknown
10:06 queued 03:14
created
src/Event/AbstractEvent.php 1 patch
Doc Comments   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
   /**
103 103
    * Set the start date.
104 104
    *
105
-   * @param DateTime $start_date
105
+   * @param \DateTime $start_date
106 106
    */
107 107
   public function setStartDate(\DateTime $start_date) {
108 108
     $this->start_date = clone($start_date);
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
   /**
129 129
    * Set the end date.
130 130
    *
131
-   * @param DateTime $end_date
131
+   * @param \DateTime $end_date
132 132
    */
133 133
   public function setEndDate(\DateTime $end_date) {
134 134
     $this->end_date = clone($end_date);
@@ -240,6 +240,7 @@  discard block
 block discarded – undo
240 240
 
241 241
   /**
242 242
    * {@inheritdoc}
243
+   * @param \DateTime $date
243 244
    */
244 245
   public function isLastMonth($date) {
245 246
     if ($date->format("n") == $this->endMonth() && $date->format("Y") == $this->endYear()) {
@@ -535,7 +536,7 @@  discard block
 block discarded – undo
535 536
   /**
536 537
    * Saves an event to whatever Drupal tables are defined in the store array
537 538
    *
538
-   * @param \ROomify\Bat\\Store\Store $store
539
+   * @param Store $store
539 540
    * @param string $granularity
540 541
    *
541 542
    * @throws \Exception
Please login to merge, or discard this patch.