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/domain/models/ModelInterface.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 09.11.19
7
- */
3
+	 * @package domain
4
+	 * @subpackage models
5
+	 * @author marius orcsik <[email protected]>
6
+	 * @date 09.11.19
7
+	 */
8 8
 namespace vsc\domain\models;
9 9
 
10 10
 interface ModelInterface extends \ArrayAccess, \Countable, \Iterator {}
Please login to merge, or discard this patch.
lib/domain/models/ModelA.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 09.11.19
7
- */
3
+	 * @package domain
4
+	 * @subpackage models
5
+	 * @author marius orcsik <[email protected]>
6
+	 * @date 09.11.19
7
+	 */
8 8
 namespace vsc\domain\models;
9 9
 
10 10
 use vsc\infrastructure\Base;
Please login to merge, or discard this patch.
lib/domain/models/HttpModelInterface.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 09.11.19
7
- */
3
+	 * @package domain
4
+	 * @subpackage models
5
+	 * @author marius orcsik <[email protected]>
6
+	 * @date 09.11.19
7
+	 */
8 8
 namespace vsc\domain\models;
9 9
 
10 10
 interface HttpModelInterface extends ModelInterface {
Please login to merge, or discard this patch.
lib/domain/models/ArrayAccessTrait.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
- * @created 2015-04-15
7
- */
3
+	 * @package domain
4
+	 * @subpackage models
5
+	 * @author Marius Orcsik <[email protected]>
6
+	 * @created 2015-04-15
7
+	 */
8 8
 namespace vsc\domain\models;
9 9
 
10 10
 trait ArrayAccessTrait {
Please login to merge, or discard this patch.
lib/domain/ExceptionDomain.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 exceptions
5
- * @author marius orcsik <[email protected]>
6
- * @date 2010.01.28
7
- */
3
+	 * @package domain
4
+	 * @subpackage exceptions
5
+	 * @author marius orcsik <[email protected]>
6
+	 * @date 2010.01.28
7
+	 */
8 8
 namespace vsc\domain;
9 9
 
10 10
 use vsc\Exception;
Please login to merge, or discard this patch.
lib/presentation/requests/CookieRequestTrait.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 21.02.15
7
- */
3
+	 * @package presentation
4
+	 * @subpackage requests
5
+	 * @author marius orcsik <[email protected]>
6
+	 * @date 21.02.15
7
+	 */
8 8
 namespace vsc\presentation\requests;
9 9
 
10 10
 use vsc\Exception;
Please login to merge, or discard this patch.
lib/presentation/requests/PostRequestTrait.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 21.02.15
7
- */
3
+	 * @package presentation
4
+	 * @subpackage requests
5
+	 * @author marius orcsik <[email protected]>
6
+	 * @date 21.02.15
7
+	 */
8 8
 namespace vsc\presentation\requests;
9 9
 
10 10
 
Please login to merge, or discard this patch.
lib/presentation/requests/SessionRequestTrait.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 21.02.15
7
- */
3
+	 * @package presentation
4
+	 * @subpackage requests
5
+	 * @author marius orcsik <[email protected]>
6
+	 * @date 21.02.15
7
+	 */
8 8
 namespace vsc\presentation\requests;
9 9
 
10 10
 use vsc\infrastructure\vsc;
Please login to merge, or discard this patch.
lib/presentation/requests/HttpRequestA.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 09.07.13
7
- */
3
+	 * @package presentation
4
+	 * @subpackage requests
5
+	 * @author marius orcsik <[email protected]>
6
+	 * @date 09.07.13
7
+	 */
8 8
 namespace vsc\presentation\requests;
9 9
 
10 10
 use vsc\infrastructure\Object;
Please login to merge, or discard this patch.