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 ( 7ed9cf...8b222c )
by Hannes
27:30 queued 21:57
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.
vendor/composer/autoload_static.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -59,6 +59,9 @@
 block discarded – undo
59 59
         ),
60 60
     );
61 61
 
62
+    /**
63
+     * @return callable
64
+     */
62 65
     public static function getInitializer(ClassLoader $loader)
63 66
     {
64 67
         return \Closure::bind(function () use ($loader) {
Please login to merge, or discard this patch.
vendor/composer/ClassLoader.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -341,6 +341,10 @@
 block discarded – undo
341 341
         return $file;
342 342
     }
343 343
 
344
+    /**
345
+     * @param string $class
346
+     * @param string $ext
347
+     */
344 348
     private function findFileWithExtension($class, $ext)
345 349
     {
346 350
         // PSR-4 lookup
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/Arborize.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -9,6 +9,11 @@  discard block
 block discarded – undo
9 9
  */
10 10
 class HTMLPurifier_Arborize
11 11
 {
12
+    /**
13
+     * @param HTMLPurifier_Token[] $tokens
14
+     * @param HTMLPurifier_Config $config
15
+     * @param HTMLPurifier_Context $context
16
+     */
12 17
     public static function arborize($tokens, $config, $context) {
13 18
         $definition = $config->getHTMLDefinition();
14 19
         $parent = new HTMLPurifier_Token_Start($definition->info_parent);
@@ -36,6 +41,10 @@  discard block
 block discarded – undo
36 41
         return $stack[0];
37 42
     }
38 43
 
44
+    /**
45
+     * @param HTMLPurifier_Config $config
46
+     * @param HTMLPurifier_Context $context
47
+     */
39 48
     public static function flatten($node, $config, $context) {
40 49
         $level = 0;
41 50
         $nodes = array($level => new HTMLPurifier_Queue(array($node)));
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      * @param string $number
25 25
      * @param HTMLPurifier_Config $config
26 26
      * @param HTMLPurifier_Context $context
27
-     * @return string|bool
27
+     * @return false|string
28 28
      * @warning Some contexts do not pass $config, $context. These
29 29
      *          variables should not be used without checking HTMLPurifier_Length
30 30
      */
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      * @param string $string
29 29
      * @param HTMLPurifier_Config $config
30 30
      * @param HTMLPurifier_Context $context
31
-     * @return bool|string
31
+     * @return boolean
32 32
      */
33 33
     public function validate($string, $config, $context)
34 34
     {
Please login to merge, or discard this patch.
ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      * @param string $string
25 25
      * @param HTMLPurifier_Config $config
26 26
      * @param HTMLPurifier_Context $context
27
-     * @return bool|string
27
+     * @return string|false
28 28
      */
29 29
     public function validate($string, $config, $context)
30 30
     {
Please login to merge, or discard this patch.