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 ( 6ec345...990a2f )
by
unknown
15:12
created
src/Constraint/Constraint.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -7,8 +7,6 @@
 block discarded – undo
7 7
 
8 8
 namespace Roomify\Bat\Constraint;
9 9
 
10
-use Roomify\Bat\ConstraintInterface;
11
-
12 10
 
13 11
 /**
14 12
  * A constraint acts as a filter that can be applied to a Calendar Response to
Please login to merge, or discard this patch.
src/Event/AbstractEvent.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
   /**
102 102
    * Set the start date.
103 103
    *
104
-   * @param DateTime $start_date
104
+   * @param \DateTime $start_date
105 105
    */
106 106
   public function setStartDate(\DateTime $start_date) {
107 107
     $this->start_date = clone($start_date);
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
   /**
128 128
    * Set the end date.
129 129
    *
130
-   * @param DateTime $end_date
130
+   * @param \DateTime $end_date
131 131
    */
132 132
   public function setEndDate(\DateTime $end_date) {
133 133
     $this->end_date = clone($end_date);
@@ -239,6 +239,7 @@  discard block
 block discarded – undo
239 239
 
240 240
   /**
241 241
    * {@inheritdoc}
242
+   * @param \DateTime $date
242 243
    */
243 244
   public function isLastMonth($date) {
244 245
     if ($date->format("n") == $this->endMonth() && $date->format("Y") == $this->endYear()) {
Please login to merge, or discard this patch.