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 ( 8ae952...d75160 )
by Marius
03:23
created
src/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.
src/application/sitemaps/ControllerMapTrait.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -24,6 +24,9 @@
 block discarded – undo
24 24
 		$this->sXmlString = $sString;
25 25
 	}
26 26
 
27
+	/**
28
+	 * @return string
29
+	 */
27 30
 	public function getString() {
28 31
 		return $this->sXmlString;
29 32
 	}
Please login to merge, or discard this patch.
src/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.
src/application/sitemaps/RootMap.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -5,6 +5,9 @@
 block discarded – undo
5 5
 
6 6
 class RootMap extends ModuleMap
7 7
 {
8
+	/**
9
+	 * @param string $sPath
10
+	 */
8 11
 	public function __construct($sPath, $sRegex = '') {
9 12
 		parent::__construct($sPath, $sRegex);
10 13
 	}
Please login to merge, or discard this patch.
src/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.
src/domain/models/EmptyModel.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -11,6 +11,9 @@  discard block
 block discarded – undo
11 11
 	protected $sPageTitle = null;
12 12
 	protected $sPageContent = null;
13 13
 
14
+	/**
15
+	 * @param string $sTitle
16
+	 */
14 17
 	public function setPageTitle($sTitle) {
15 18
 		$this->sPageTitle = $sTitle;
16 19
 	}
@@ -19,6 +22,9 @@  discard block
 block discarded – undo
19 22
 		return $this->sPageTitle;
20 23
 	}
21 24
 
25
+	/**
26
+	 * @param string $sContent
27
+	 */
22 28
 	public function setPageContent($sContent) {
23 29
 		$this->sPageContent = $sContent;
24 30
 	}
Please login to merge, or discard this patch.
src/domain/models/StaticFileModel.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -19,10 +19,16 @@  discard block
 block discarded – undo
19 19
 		$this->setLastModified(date('Y-m-d G:i:s', filemtime($this->getFilePath())));
20 20
 	}
21 21
 
22
+	/**
23
+	 * @return string
24
+	 */
22 25
 	public function getFilePath() {
23 26
 		return $this->sFilePath;
24 27
 	}
25 28
 
29
+	/**
30
+	 * @param string $sName
31
+	 */
26 32
 	public function setFileName($sName) {
27 33
 		$this->sFileName = $sName;
28 34
 	}
@@ -42,6 +48,9 @@  discard block
 block discarded – undo
42 48
 		return $this->sFileContent;
43 49
 	}
44 50
 
51
+	/**
52
+	 * @param string $iMTime
53
+	 */
45 54
 	public function setLastModified($iMTime) {
46 55
 		$this->iLastModified = $iMTime;
47 56
 	}
Please login to merge, or discard this patch.
src/domain/models/XmlReader.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -24,6 +24,9 @@
 block discarded – undo
24 24
 		$this->sXmlString = $sString;
25 25
 	}
26 26
 
27
+	/**
28
+	 * @return string
29
+	 */
27 30
 	public function getString() {
28 31
 		return $this->sXmlString;
29 32
 	}
Please login to merge, or discard this patch.
src/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.