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 ( 8709d9...1fd194 )
by Norbert
10:49
created
src/Matcher/ArrayMatcher.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
      *
134 134
      * @param array $pattern
135 135
      * @param array $values
136
-     * @param $parentPath
136
+     * @param string $parentPath
137 137
      * @return bool
138 138
      */
139 139
     private function isPatternValid(array $pattern, array $values, $parentPath)
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
     }
171 171
 
172 172
     /**
173
-     * @param $path
173
+     * @param string $path
174 174
      * @param $haystack
175 175
      * @return bool
176 176
      */
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
 
182 182
     /**
183 183
      * @param $array
184
-     * @param $path
184
+     * @param string $path
185 185
      * @return mixed
186 186
      */
187 187
     private function getValueByPath($array, $path)
@@ -205,8 +205,8 @@  discard block
 block discarded – undo
205 205
     }
206 206
 
207 207
     /**
208
-     * @param $place
209
-     * @param $path
208
+     * @param string $place
209
+     * @param string $path
210 210
      */
211 211
     private function setMissingElementInError($place, $path)
212 212
     {
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
 
225 225
     /**
226 226
      * @param $parentPath
227
-     * @param $path
227
+     * @param string $path
228 228
      * @return string
229 229
      */
230 230
     private function formatFullPath($parentPath, $path)
Please login to merge, or discard this patch.
src/Parser.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
     }
64 64
 
65 65
     /**
66
-     * @param $pattern
66
+     * @param string $pattern
67 67
      * @return AST\Pattern
68 68
      */
69 69
     public function getAST($pattern)
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
 
239 239
     /**
240 240
      * @param array $array
241
-     * @return bool
241
+     * @return null|boolean
242 242
      * @throws PatternException
243 243
      */
244 244
     private function getNextArrayElement(array &$array)
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
 
286 286
     /**
287 287
      * @param $unexpectedToken
288
-     * @param null $expected
288
+     * @param string $expected
289 289
      * @throws PatternException
290 290
      */
291 291
     private function unexpectedSyntaxError($unexpectedToken, $expected = null)
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
     }
300 300
 
301 301
     /**
302
-     * @param null $expected
302
+     * @param string $expected
303 303
      * @throws PatternException
304 304
      */
305 305
     private function unexpectedEndOfString($expected = null)
Please login to merge, or discard this patch.