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 ( 7b42e1...c93f43 )
by Marius
10:41 queued 04:09
created
lib/application/sitemaps/ContentTypeMappingInterface.php 1 patch
Doc Comments   +13 added lines patch added patch discarded remove patch
@@ -2,11 +2,24 @@
 block discarded – undo
2 2
 namespace vsc\application\sitemaps;
3 3
 
4 4
 interface ContentTypeMappingInterface {
5
+
6
+	/**
7
+	 * @return boolean|null
8
+	 */
5 9
 	public function setMainTemplatePath($sPath);
6 10
 
11
+	/**
12
+	 * @return string
13
+	 */
7 14
 	public function getMainTemplatePath();
8 15
 
16
+	/**
17
+	 * @return void
18
+	 */
9 19
 	public function setMainTemplate($sPath);
10 20
 
21
+	/**
22
+	 * @return string
23
+	 */
11 24
 	public function getMainTemplate();
12 25
 }
Please login to merge, or discard this patch.
lib/application/sitemaps/MappingA.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@
 block discarded – undo
157 157
 
158 158
 	/**
159 159
 	 * @param string $sPath
160
-	 * @return bool
160
+	 * @return boolean|null
161 161
 	 * @throws ExceptionSitemap
162 162
 	 */
163 163
 	public function setTemplatePath($sPath) {
Please login to merge, or discard this patch.
lib/domain/models/CacheableModelA.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -10,5 +10,9 @@
 block discarded – undo
10 10
 use vsc\infrastructure\caching\CacheableInterface;
11 11
 
12 12
 abstract class CacheableModelA extends ModelA implements CacheableInterface {
13
+
14
+	/**
15
+	 * @return string|null
16
+	 */
13 17
 	abstract public function getLastModified();
14 18
 }
Please login to merge, or discard this patch.
lib/infrastructure/urls/UrlParserA.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -137,6 +137,9 @@  discard block
 block discarded – undo
137 137
 		return self::getTldOf($sSubDomains);
138 138
 	}
139 139
 
140
+	/**
141
+	 * @param string $sHost
142
+	 */
140 143
 	public static function getTldOf($sHost) {
141 144
 		if (ip2long($sHost) > 0 || empty($sHost)) { return false; }
142 145
 
@@ -191,7 +194,7 @@  discard block
 block discarded – undo
191 194
 	}
192 195
 
193 196
 	/**
194
-	 * @return Url
197
+	 * @return string
195 198
 	 */
196 199
 	static public function getSiteUri() {
197 200
 		return static::url(static::getRequestUri())->getHost();
Please login to merge, or discard this patch.
lib/presentation/requests/AuthenticatedRequestTrait.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@
 block discarded – undo
20 20
 
21 21
 	/**
22 22
 	 * @returns HttpAuthenticationA
23
+	 * @return HttpAuthenticationA
23 24
 	 */
24 25
 	public function getAuthentication() {
25 26
 		return $this->oAuth;
Please login to merge, or discard this patch.
lib/presentation/requests/HttpAuthenticationA.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -29,6 +29,9 @@
 block discarded – undo
29 29
 		return $this->password;
30 30
 	}
31 31
 
32
+	/**
33
+	 * @param integer $iType
34
+	 */
32 35
 	public static function getAuthenticationSchemas($iType) {
33 36
 		$aSchemas = array();
34 37
 		if (($iType & self::BASIC) == self::BASIC) {
Please login to merge, or discard this patch.
lib/presentation/responses/HttpResponseType.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -8,6 +8,10 @@
 block discarded – undo
8 8
 namespace vsc\presentation\responses;
9 9
 
10 10
 class HttpResponseType {
11
+
12
+	/**
13
+	 * @param integer $iStatus
14
+	 */
11 15
 	public static function getStatus($iStatus) {
12 16
 		return (is_int($iStatus) && array_key_exists($iStatus, static::$aStatusList)) ? static::$aStatusList[$iStatus] : static::$aStatusList[500];
13 17
 	}
Please login to merge, or discard this patch.
lib/presentation/views/RssViewInterface.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -8,7 +8,19 @@
 block discarded – undo
8 8
 namespace vsc\presentation\views;
9 9
 
10 10
 interface RssViewInterface {
11
+
12
+	/**
13
+	 * @return string
14
+	 */
11 15
 	function getDescription();
16
+
17
+	/**
18
+	 * @return string
19
+	 */
12 20
 	function getLanguage();
21
+
22
+	/**
23
+	 * @return string
24
+	 */
13 25
 	function getLastBuildDate();
14 26
 }
Please login to merge, or discard this patch.
lib/presentation/views/XmlViewInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -8,6 +8,10 @@
 block discarded – undo
8 8
 namespace vsc\presentation\views;
9 9
 
10 10
 interface XmlViewInterface {
11
+
12
+	/**
13
+	 * @return string
14
+	 */
11 15
 	function getContent();
12 16
 
13 17
 	function getMetaHeaders();
Please login to merge, or discard this patch.