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 ( e113ab...62d262 )
by Marius
03:41
created
res/application/sitemaps/ModuleMap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 	 * @param string $sPath
26 26
 	 * @return bool
27 27
 	 */
28
-	public static function isValidMap ($sPath) {
28
+	public static function isValidMap($sPath) {
29 29
 		return (basename($sPath) == 'map.php' && is_file($sPath));
30 30
 	}
31 31
 
Please login to merge, or discard this patch.
res/application/sitemaps/ClassMap.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,8 +32,7 @@
 block discarded – undo
32 32
 	 * @param vscObject $mappedObject
33 33
 	 * @return bool
34 34
 	 */
35
-	public function maps(vscObject $mappedObject)
36
-	{
35
+	public function maps(vscObject $mappedObject) {
37 36
 		return (get_class($mappedObject) == $this->getPath());
38 37
 	}
39 38
 }
Please login to merge, or discard this patch.
lib/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.
lib/presentation/responses/ExceptionResponseRedirect.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.
lib/presentation/views/XhtmlViewInterface.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.
res/templates/json/404.tpl.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 $e = $model->getException();
5 5
 
6 6
 $error = array(
7
-	'message' => $e->getCode().' '.$e->getMessage(),
7
+	'message' => $e->getCode() . ' ' . $e->getMessage(),
8 8
 );
9 9
 
10 10
 echo $this->outputModel($model);
Please login to merge, or discard this patch.
res/templates/xhtml/content.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,8 +17,9 @@
 block discarded – undo
17 17
 <ul>
18 18
 <?php
19 19
 	foreach (get_included_files() as $sFileName) {
20
-		if (stristr($sFileName, 'map.php') && stristr($sFileName, $this->getMap()->getModuleName()))
21
-			echo '<li>' . $sFileName . '</li>';
20
+		if (stristr($sFileName, 'map.php') && stristr($sFileName, $this->getMap()->getModuleName())) {
21
+					echo '<li>' . $sFileName . '</li>';
22
+		}
22 23
 	};
23 24
 ?>
24 25
 </ul>
Please login to merge, or discard this patch.
res/templates/html5/content.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,8 +17,9 @@
 block discarded – undo
17 17
 <ul>
18 18
 <?php
19 19
 	foreach (get_included_files() as $sFileName) {
20
-		if (stristr($sFileName, 'map.php') && stristr($sFileName, $this->getMap()->getModuleName()))
21
-			echo '<li>' . $sFileName . '</li>';
20
+		if (stristr($sFileName, 'map.php') && stristr($sFileName, $this->getMap()->getModuleName())) {
21
+					echo '<li>' . $sFileName . '</li>';
22
+		}
22 23
 	};
23 24
 ?>
24 25
 </ul>
Please login to merge, or discard this patch.