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.
Passed
Branch master (7facc0)
by Marius
05:22
created
res/domain/models/ArrayModel.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @package domain
4
- * @subpackage models
5
- * @author marius orcsik <[email protected]>
6
- * @date 2010.04.15
7
- */
3
+	 * @package domain
4
+	 * @subpackage models
5
+	 * @author marius orcsik <[email protected]>
6
+	 * @date 2010.04.15
7
+	 */
8 8
 namespace vsc\domain\models;
9 9
 
10 10
 class ArrayModel extends ModelA implements ModelInterface {
Please login to merge, or discard this patch.
res/domain/models/JsonRPCResponse.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @package domain
4
- * @subpackage models
5
- * @author marius orcsik <[email protected]>
6
- * @date 2012.08.25
7
- */
3
+	 * @package domain
4
+	 * @subpackage models
5
+	 * @author marius orcsik <[email protected]>
6
+	 * @date 2012.08.25
7
+	 */
8 8
 namespace vsc\domain\models;
9 9
 
10 10
 class JsonRPCResponse extends ModelA {
Please login to merge, or discard this patch.
res/domain/models/RequestModel.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @package domain
4
- * @subpackage models
5
- * @author marius orcsik <[email protected]>
6
- * @date 11.12.01
7
- */
3
+	 * @package domain
4
+	 * @subpackage models
5
+	 * @author marius orcsik <[email protected]>
6
+	 * @date 11.12.01
7
+	 */
8 8
 namespace vsc\domain\models;
9 9
 
10 10
 use \vsc\infrastructure\vsc;
Please login to merge, or discard this patch.
res/functions.inc.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,8 +74,9 @@
 block discarded – undo
74 74
 		}
75 75
 		$sRet .= '</ul>';
76 76
 
77
-		if ($e instanceof \Exception)
78
-			$sRet .= '<p style="font-size:.8em">Triggered in <strong>' . $e->getFile() . '</strong> at line ' . $e->getLine() . '</p>';
77
+		if ($e instanceof \Exception) {
78
+					$sRet .= '<p style="font-size:.8em">Triggered in <strong>' . $e->getFile() . '</strong> at line ' . $e->getLine() . '</p>';
79
+		}
79 80
 
80 81
 		$sRet .= '<pre style="position:fixed;bottom:2em;display:' . (vsc::getEnv()->isDevelopment() ? 'block' : 'none') . ';font-size:.8em" id="trace">';
81 82
 	}
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
@@ -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.
res/templates/txt/content.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,8 +18,9 @@
 block discarded – undo
18 18
 
19 19
 <?php
20 20
 	foreach (get_included_files() as $sFileName) {
21
-		if (stristr($sFileName, 'map.php') && stristr($sFileName, $this->getMap()->getModuleName()))
22
-			echo "\t" . '- ' . $sFileName . "\n";
21
+		if (stristr($sFileName, 'map.php') && stristr($sFileName, $this->getMap()->getModuleName())) {
22
+					echo "\t" . '- ' . $sFileName . "\n";
23
+		}
23 24
 	};
24 25
 ?>
25 26
 
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
@@ -12,8 +12,9 @@
 block discarded – undo
12 12
 <ul>
13 13
 <?php
14 14
 	foreach (get_included_files() as $sFileName) {
15
-		if (stristr($sFileName, 'map.php') && stristr($sFileName, $this->getMap()->getModuleName()))
16
-			echo '<li>' . $sFileName . '</li>';
15
+		if (stristr($sFileName, 'map.php') && stristr($sFileName, $this->getMap()->getModuleName())) {
16
+					echo '<li>' . $sFileName . '</li>';
17
+		}
17 18
 	};
18 19
 ?>
19 20
 </ul>
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($error);
Please login to merge, or discard this patch.
res/templates/json/404.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.