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.
Test Setup Failed
Branch master (290674)
by Marius
11:06
created
src/application/sitemaps/MappingA.php 3 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
 
137 137
 	/**
138 138
 	 * @param string $sPath
139
-	 * @return bool
139
+	 * @return boolean|null
140 140
 	 * @throws ExceptionSitemap
141 141
 	 */
142 142
 	public function setTemplatePath($sPath) {
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
 	}
282 282
 
283 283
 	/**
284
-	 * @param Object $mappedObject
284
+	 * @param BaseObject $mappedObject
285 285
 	 * @return boolean
286 286
 	 */
287 287
 	public function maps(BaseObject $mappedObject)
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 
10 10
 use vsc\application\controllers\ExceptionController;
11 11
 use vsc\infrastructure\urls\Url;
12
-use vsc\infrastructure\urls\UrlParserA;
13 12
 use vsc\infrastructure\Base;
14 13
 use vsc\infrastructure\BaseObject;
15 14
 use vsc\presentation\requests\HttpAuthenticationA;
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -284,8 +284,7 @@
 block discarded – undo
284 284
 	 * @param Object $mappedObject
285 285
 	 * @return boolean
286 286
 	 */
287
-	public function maps(BaseObject $mappedObject)
288
-	{
287
+	public function maps(BaseObject $mappedObject) {
289 288
 		return (bool)stristr(get_class($mappedObject), substr(basename($this->getPath()), 0, -4));
290 289
 	}
291 290
 
Please login to merge, or discard this patch.
src/infrastructure/urls/Url.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,8 +7,7 @@
 block discarded – undo
7 7
 
8 8
 use vsc\infrastructure\BaseObject;
9 9
 
10
-class Url extends BaseObject
11
-{
10
+class Url extends BaseObject {
12 11
 	static protected $queryEncodingType = PHP_QUERY_RFC1738;
13 12
 	static protected $validSchemes = ['http', 'https', 'file'];
14 13
 
Please login to merge, or discard this patch.