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 ( b8c86f...75067a )
by
unknown
37s
created
src/Record.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,10 +12,10 @@
 block discarded – undo
12 12
 
13 13
 namespace Localgod\Tick;
14 14
 
15
- use RuntimeException;
16
- use InvalidArgumentException;
17
- use Localgod\Tick\Entity;
18
- use Localgod\Tick\Storage\Storage;
15
+    use RuntimeException;
16
+    use InvalidArgumentException;
17
+    use Localgod\Tick\Entity;
18
+    use Localgod\Tick\Storage\Storage;
19 19
 
20 20
 /**
21 21
  * Record
Please login to merge, or discard this patch.
src/Storage/MongoStorage.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -12,15 +12,15 @@
 block discarded – undo
12 12
 
13 13
 namespace Localgod\Tick\Storage;
14 14
 
15
- use MongoDB;
16
- use MongoId;
17
- use MongoRegex;
18
- use MongoConnectionException;
19
- use MongoCursorTimeoutException;
20
- use MongoDate;
21
- use Exception;
22
- use RuntimeException;
23
- use DateTime;
15
+    use MongoDB;
16
+    use MongoId;
17
+    use MongoRegex;
18
+    use MongoConnectionException;
19
+    use MongoCursorTimeoutException;
20
+    use MongoDate;
21
+    use Exception;
22
+    use RuntimeException;
23
+    use DateTime;
24 24
 
25 25
 /**
26 26
  * Tick mongo storage implementation
Please login to merge, or discard this patch.
src/Result.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -10,11 +10,11 @@
 block discarded – undo
10 10
  * @link     https://github.com/localgod/php-tick php-tick
11 11
  */
12 12
 
13
- namespace Localgod\Tick;
13
+    namespace Localgod\Tick;
14 14
 
15
- use Iterator;
16
- use DateTime;
17
- use InvalidArgumentException;
15
+    use Iterator;
16
+    use DateTime;
17
+    use InvalidArgumentException;
18 18
 
19 19
 /**
20 20
  * Result
Please login to merge, or discard this patch.