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.
Passed
Branch master (da7a20)
by Hannes
06:29
created
src/Calendar/CCalendar.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -55,6 +55,10 @@  discard block
 block discarded – undo
55 55
           }
56 56
         return ["year" => $year, "month"=>$month];
57 57
     }
58
+
59
+    /**
60
+     * @param CWeek|null $week
61
+     */
58 62
     public function addWeek($week)
59 63
     {
60 64
         $this->weeks[] = $week;
@@ -135,6 +139,9 @@  discard block
 block discarded – undo
135 139
     }
136 140
 
137 141
 
142
+    /**
143
+     * @param string $firstDayOfMonth
144
+     */
138 145
     private function getAmountOfEmptyDays($firstDayOfMonth){
139 146
         $number = 0;
140 147
         if($firstDayOfMonth == 0){
Please login to merge, or discard this patch.
src/Events/CDatabaseModel.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -64,8 +64,6 @@
 block discarded – undo
64 64
     /**
65 65
      * Execute the query built.
66 66
      *
67
-     * @param string $query custom query.
68
-     *
69 67
      * @return $this
70 68
      */
71 69
     public function execute($params = [])
Please login to merge, or discard this patch.
src/Events/Event.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -73,6 +73,10 @@
 block discarded – undo
73 73
 
74 74
         return $eventsPerDayForMonth;
75 75
     }
76
+
77
+    /**
78
+     * @param string $date
79
+     */
76 80
     public function getEventCount($date){
77 81
         $this->db->select()
78 82
             ->from($this->getSource())
Please login to merge, or discard this patch.