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/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.
src/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.
src/templates/rss/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.
src/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.
src/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.
src/application/sitemaps/ResourceMapTrait.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,8 +9,7 @@
 block discarded – undo
9 9
 
10 10
 use vsc\infrastructure\urls\UrlParserA;
11 11
 
12
-trait ResourceMapTrait
13
-{
12
+trait ResourceMapTrait {
14 13
 	/**
15 14
 	 * @var string
16 15
 	 */
Please login to merge, or discard this patch.
src/application/sitemaps/RootMap.php 1 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/application/sitemaps/MappingA.php 1 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/ModuleMapTrait.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,8 +8,7 @@
 block discarded – undo
8 8
 namespace vsc\application\sitemaps;
9 9
 
10 10
 
11
-trait ModuleMapTrait
12
-{
11
+trait ModuleMapTrait {
13 12
 	/**
14 13
 	 * @var MappingA
15 14
 	 */
Please login to merge, or discard this patch.