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 ( 84136f...fd9624 )
by Ronald
02:33
created
src/Event/AbstractEvent.php 1 patch
Doc Comments   +6 added lines, -5 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
   /**
86 86
    * Returns the start date.
87 87
    *
88
-   * @return DateTime
88
+   * @return \DateTime
89 89
    */
90 90
   public function getStartDate() {
91 91
     return clone($this->start_date);
@@ -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);
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
   /**
112 112
    * Returns the end date.
113 113
    *
114
-   * @return DateTime
114
+   * @return \DateTime
115 115
    */
116 116
   public function getEndDate() {
117 117
     return clone($this->end_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()) {
@@ -608,7 +609,7 @@  discard block
 block discarded – undo
608 609
   /**
609 610
    * Saves an event to whatever Drupal tables are defined in the store array
610 611
    *
611
-   * @param \ROomify\Bat\\Store\Store $store
612
+   * @param Store $store
612 613
    * @param string $granularity
613 614
    *
614 615
    * @throws \Exception
Please login to merge, or discard this patch.