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
lib/application/processors/ErrorProcessorInterface.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 application
4
- * @subpackage processors
5
- * @author marius orcsik <[email protected]>
6
- * @date 09.11.18
7
- */
3
+	 * @package application
4
+	 * @subpackage processors
5
+	 * @author marius orcsik <[email protected]>
6
+	 * @date 09.11.18
7
+	 */
8 8
 namespace vsc\application\processors;
9 9
 
10 10
 interface ErrorProcessorInterface {
Please login to merge, or discard this patch.
lib/application/processors/ProcessorInterface.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 application
4
- * @subpackage processors
5
- * @author marius orcsik <[email protected]>
6
- * @date 09.11.19
7
- */
3
+	 * @package application
4
+	 * @subpackage processors
5
+	 * @author marius orcsik <[email protected]>
6
+	 * @date 09.11.19
7
+	 */
8 8
 namespace vsc\application\processors;
9 9
 
10 10
 use vsc\domain\models\ModelA;
Please login to merge, or discard this patch.
lib/application/processors/AuthenticatedProcessorInterface.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 application
4
- * @subpackage processors
5
- * @author marius orcsik <[email protected]>
6
- * @date 26.09.13
7
- */
3
+	 * @package application
4
+	 * @subpackage processors
5
+	 * @author marius orcsik <[email protected]>
6
+	 * @date 26.09.13
7
+	 */
8 8
 namespace vsc\application\processors;
9 9
 
10 10
 use vsc\presentation\requests\HttpAuthenticationA;
Please login to merge, or discard this patch.
lib/application/controllers/JsonControllerInterface.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 controllers
5
- * @author marius orcsik <[email protected]>
6
- * @date 2010.04.09
7
- */
3
+	 * @package presentation
4
+	 * @subpackage controllers
5
+	 * @author marius orcsik <[email protected]>
6
+	 * @date 2010.04.09
7
+	 */
8 8
 namespace vsc\application\controllers;
9 9
 
10 10
 interface JsonControllerInterface extends PlainTextControllerInterface {}
Please login to merge, or discard this patch.
lib/application/controllers/RssControllerInterface.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 controllers
5
- * @author marius orcsik <[email protected]>
6
- * @date 09.12.02
7
- */
3
+	 * @package presentation
4
+	 * @subpackage controllers
5
+	 * @author marius orcsik <[email protected]>
6
+	 * @date 09.12.02
7
+	 */
8 8
 namespace vsc\application\controllers;
9 9
 
10 10
 interface RssControllerInterface {}
Please login to merge, or discard this patch.
lib/application/controllers/CacheableControllerA.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 	 * @param HttpResponseA $oResponse
29 29
 	 * @return HttpResponseA
30 30
 	 */
31
-	public function addCacheHeaders (HttpRequestA $oRequest, ModelA $oModel, HttpResponseA $oResponse) {
31
+	public function addCacheHeaders(HttpRequestA $oRequest, ModelA $oModel, HttpResponseA $oResponse) {
32 32
 		$iExpireTime = 600; // ten minute
33 33
 		$oNow = new \DateTime('now', new \DateTimeZone('GMT'));
34 34
 		$oResponse->setDate($oNow->format('r'));
Please login to merge, or discard this patch.
res/domain/access/FileAccess.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 access
5
- * @author marius orcsik <[email protected]>
6
- * @date 12.08.07
7
- */
3
+	 * @package domain
4
+	 * @subpackage access
5
+	 * @author marius orcsik <[email protected]>
6
+	 * @date 12.08.07
7
+	 */
8 8
 namespace vsc\domain\access;
9 9
 
10 10
 use vsc\infrastructure\Object;
Please login to merge, or discard this patch.
res/domain/models/JsonRPCRequest.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
 use vsc\infrastructure\vsc;
Please login to merge, or discard this patch.
res/domain/models/JsonReader.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.13
7
- */
3
+	 * @package domain
4
+	 * @subpackage models
5
+	 * @author marius orcsik <[email protected]>
6
+	 * @date 2010.04.13
7
+	 */
8 8
 namespace vsc\domain\models;
9 9
 
10 10
 use vsc\domain\ExceptionDomain;
Please login to merge, or discard this patch.