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/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.
res/presentation/requests/BasicHttpAuthentication.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 presentation
4
- * @subpackage requests
5
- * @author marius orcsik <[email protected]>
6
- * @date 2013.09.26
7
- */
3
+	 * @package presentation
4
+	 * @subpackage requests
5
+	 * @author marius orcsik <[email protected]>
6
+	 * @date 2013.09.26
7
+	 */
8 8
 namespace vsc\presentation\requests;
9 9
 
10 10
 class BasicHttpAuthentication extends HttpAuthenticationA {
Please login to merge, or discard this patch.
res/presentation/requests/RawHttpRequest.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 presentation
4
- * @subpackage requests
5
- * @author marius orcsik <[email protected]>
6
- * @date 2011.08.11
7
- */
3
+	 * @package presentation
4
+	 * @subpackage requests
5
+	 * @author marius orcsik <[email protected]>
6
+	 * @date 2011.08.11
7
+	 */
8 8
 namespace vsc\presentation\requests;
9 9
 
10 10
 class RawHttpRequest extends RwHttpRequest {
Please login to merge, or discard this patch.
res/presentation/requests/DigestHttpAuthentication.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 presentation
4
- * @subpackage requests
5
- * @author marius orcsik <[email protected]>
6
- * @date 2013.09.26
7
- */
3
+	 * @package presentation
4
+	 * @subpackage requests
5
+	 * @author marius orcsik <[email protected]>
6
+	 * @date 2013.09.26
7
+	 */
8 8
 namespace vsc\presentation\requests;
9 9
 
10 10
 class DigestHttpAuthentication extends HttpAuthenticationA {
Please login to merge, or discard this patch.
res/presentation/views/PlainTextView.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 presentation
4
- * @subpackage views
5
- * @author marius orcsik <[email protected]>
6
- * @date 2011.02.17
7
- */
3
+	 * @package presentation
4
+	 * @subpackage views
5
+	 * @author marius orcsik <[email protected]>
6
+	 * @date 2011.02.17
7
+	 */
8 8
 namespace vsc\presentation\views;
9 9
 
10 10
 use vsc\domain\models\StaticFileModel;
Please login to merge, or discard this patch.
res/presentation/views/RssView.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 presentation
4
- * @subpackage views
5
- * @author marius orcsik <[email protected]>
6
- * @date 09.11.19
7
- */
3
+	 * @package presentation
4
+	 * @subpackage views
5
+	 * @author marius orcsik <[email protected]>
6
+	 * @date 09.11.19
7
+	 */
8 8
 namespace vsc\presentation\views;
9 9
 
10 10
 class RssView extends ViewA implements RssViewInterface {
Please login to merge, or discard this patch.
res/presentation/views/TxtView.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 presentation
4
- * @subpackage views
5
- * @author marius orcsik <[email protected]>
6
- * @date 2010.04.09
7
- */
3
+	 * @package presentation
4
+	 * @subpackage views
5
+	 * @author marius orcsik <[email protected]>
6
+	 * @date 2010.04.09
7
+	 */
8 8
 namespace vsc\presentation\views;
9 9
 
10 10
 class TxtView extends ViewA implements ViewInterface {
Please login to merge, or discard this patch.
res/presentation/views/JsonView.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 presentation
4
- * @subpackage views
5
- * @author marius orcsik <[email protected]>
6
- * @date 2010.04.09
7
- */
3
+	 * @package presentation
4
+	 * @subpackage views
5
+	 * @author marius orcsik <[email protected]>
6
+	 * @date 2010.04.09
7
+	 */
8 8
 namespace vsc\presentation\views;
9 9
 
10 10
 use vsc\domain\models\ModelA;
Please login to merge, or discard this patch.
res/presentation/views/Html5View.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 presentation
4
- * @subpackage views
5
- * @author marius orcsik <[email protected]>
6
- * @date 2010.10.15
7
- */
3
+	 * @package presentation
4
+	 * @subpackage views
5
+	 * @author marius orcsik <[email protected]>
6
+	 * @date 2010.10.15
7
+	 */
8 8
 namespace vsc\presentation\views;
9 9
 
10 10
 class Html5View extends XhtmlView {
Please login to merge, or discard this patch.