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 ( 63bf77...7c1678 )
by Marius
05:51
created
src/templates/xhtml/content.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,8 +15,9 @@
 block discarded – undo
15 15
 <ul>
16 16
 <?php
17 17
 	foreach (get_included_files() as $sFileName) {
18
-		if (stristr($sFileName, 'map.php') && stristr($sFileName, $this->getMap()->getModuleName()))
19
-			echo '<li>' . $sFileName . '</li>';
18
+		if (stristr($sFileName, 'map.php') && stristr($sFileName, $this->getMap()->getModuleName())) {
19
+					echo '<li>' . $sFileName . '</li>';
20
+		}
20 21
 	};
21 22
 ?>
22 23
 </ul>
Please login to merge, or discard this patch.
src/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($error);
Please login to merge, or discard this patch.
src/templates/rss/content.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,8 +15,9 @@
 block discarded – undo
15 15
 <ul>
16 16
 <?php
17 17
 	foreach (get_included_files() as $sFileName) {
18
-		if (stristr($sFileName, 'map.php') && stristr($sFileName, $this->getMap()->getModuleName()))
19
-			echo '<li>' . $sFileName . '</li>';
18
+		if (stristr($sFileName, 'map.php') && stristr($sFileName, $this->getMap()->getModuleName())) {
19
+					echo '<li>' . $sFileName . '</li>';
20
+		}
20 21
 	};
21 22
 ?>
22 23
 </ul>
Please login to merge, or discard this patch.