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 ( d75160...cd02cd )
by Marius
03:28
created
src/infrastructure/urls/Url.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 		if ($schPos === false) {
59 59
 			$this->host = $host;
60 60
 		} else {
61
-			$this->host = substr($host, $schPos+2);
61
+			$this->host = substr($host, $schPos + 2);
62 62
 		}
63 63
 	}
64 64
 
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
 		if ($this->hasPath()) {
135 135
 			$path = UrlParserA::normalizePath($this->path);
136 136
 		}
137
-		if (($this->hasHost() || !empty($path))&& !UrlParserA::hasGoodTermination($path)) {
137
+		if (($this->hasHost() || !empty($path)) && !UrlParserA::hasGoodTermination($path)) {
138 138
 			$path .= '/';
139 139
 		}
140 140
 		return $path;
Please login to merge, or discard this patch.