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 ( cd02cd...eaf6b4 )
by Marius
03:12
created
src/application/dispatchers/RwDispatcher.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,6 @@
 block discarded – undo
20 20
 use vsc\application\sitemaps\ExceptionSitemap;
21 21
 use vsc\application\sitemaps\MappingA;
22 22
 use vsc\application\sitemaps\ModuleMap;
23
-use vsc\application\sitemaps\RootMap;
24 23
 use vsc\infrastructure\vsc;
25 24
 use vsc\presentation\requests\RwHttpRequest;
26 25
 use vsc\presentation\responses\ExceptionResponseError;
Please login to merge, or discard this patch.
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 3 patches
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.
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\Object;
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
@@ -500,8 +500,7 @@
 block discarded – undo
500 500
 	 * @param \vsc\infrastructure\Object $mappedObject
501 501
 	 * @return boolean
502 502
 	 */
503
-	public function maps(Object $mappedObject)
504
-	{
503
+	public function maps(Object $mappedObject) {
505 504
 		return (bool)stristr(get_class($mappedObject), substr(basename($this->getPath()), 0, -4));
506 505
 	}
507 506
 
Please login to merge, or discard this patch.
src/application/sitemaps/RootMap.php 2 patches
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.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,7 @@
 block discarded – undo
3 3
 
4 4
 use vsc\application\controllers\Html5Controller;
5 5
 
6
-class RootMap extends ModuleMap
7
-{
6
+class RootMap extends ModuleMap {
8 7
 	public function __construct($sPath, $sRegex = '') {
9 8
 		parent::__construct($sPath, $sRegex);
10 9
 	}
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.