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.
Test Setup Failed
Pull Request — master (#4)
by thomas
02:54
created
lib/ASN1/Type/Primitive/PrintableString.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace ASN1\Type\Primitive;
6 6
 
Please login to merge, or discard this patch.
lib/ASN1/Type/Primitive/VideotexString.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace ASN1\Type\Primitive;
6 6
 
Please login to merge, or discard this patch.
lib/ASN1/Type/Primitive/CharacterString.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace ASN1\Type\Primitive;
6 6
 
Please login to merge, or discard this patch.
lib/ASN1/Type/Primitive/GraphicString.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace ASN1\Type\Primitive;
6 6
 
Please login to merge, or discard this patch.
lib/ASN1/Type/Primitive/BMPString.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace ASN1\Type\Primitive;
6 6
 
Please login to merge, or discard this patch.
lib/ASN1/Type/Primitive/Enumerated.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace ASN1\Type\Primitive;
6 6
 
Please login to merge, or discard this patch.
lib/ASN1/Type/Primitive/NullType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace ASN1\Type\Primitive;
6 6
 
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      * @return self
43 43
      */
44 44
     protected static function _decodeFromDER(Identifier $identifier, string $data,
45
-        int &$offset)
45
+        int & $offset)
46 46
     {
47 47
         $idx = $offset;
48 48
         if (!$identifier->isPrimitive()) {
Please login to merge, or discard this patch.
lib/ASN1/Type/Primitive/UniversalString.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace ASN1\Type\Primitive;
6 6
 
Please login to merge, or discard this patch.
lib/ASN1/Type/Primitive/Real.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace ASN1\Type\Primitive;
6 6
 
@@ -32,14 +32,14 @@  discard block
 block discarded – undo
32 32
      * @link http://php.net/manual/en/language.types.float.php
33 33
      * @var string
34 34
      */
35
-    const PHP_EXPONENT_DNUM = '/^'. /* @formatter:off */
36
-        '([+\-]?'. // sign
37
-        '(?:'.
38
-            '\d+'. // LNUM
39
-            '|'.
40
-            '(?:\d*\.\d+|\d+\.\d*)'. // DNUM
41
-        '))[eE]'.
42
-        '([+\-]?\d+)'. // exponent
35
+    const PHP_EXPONENT_DNUM = '/^' . /* @formatter:off */
36
+        '([+\-]?' . // sign
37
+        '(?:' .
38
+            '\d+' . // LNUM
39
+            '|' .
40
+            '(?:\d*\.\d+|\d+\.\d*)' . // DNUM
41
+        '))[eE]' .
42
+        '([+\-]?\d+)' . // exponent
43 43
     '$/'; /* @formatter:on */
44 44
     
45 45
     /**
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
      * @return self
115 115
      */
116 116
     protected static function _decodeFromDER(Identifier $identifier, string $data,
117
-        int &$offset)
117
+        int & $offset)
118 118
     {
119 119
         $idx = $offset;
120 120
         $length = Length::expectFromDER($data, $idx);
Please login to merge, or discard this patch.