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
Push — master ( 27531d...b2df35 )
by Jamie
03:59
created
src/Common/Resource/AbstractResource.php 1 patch
Doc Comments   +7 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,6 +96,9 @@  discard block
 block discarded – undo
96 96
         }
97 97
     }
98 98
 
99
+    /**
100
+     * @param string $type
101
+     */
99 102
     private function parseDocBlockValue($type, $val)
100 103
     {
101 104
         if (strpos($type, '[]') === 0 && is_array($val)) {
@@ -120,6 +123,9 @@  discard block
 block discarded – undo
120 123
         ]);
121 124
     }
122 125
 
126
+    /**
127
+     * @return string
128
+     */
123 129
     private function normalizeModelClass($class)
124 130
     {
125 131
         if (strpos($class, '\\') === false) {
@@ -166,7 +172,7 @@  discard block
 block discarded – undo
166 172
     /**
167 173
      * @param array $definition
168 174
      *
169
-     * @return mixed
175
+     * @return ResponseInterface
170 176
      */
171 177
     public function executeWithState(array $definition)
172 178
     {
Please login to merge, or discard this patch.