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/TimeType.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;
6 6
 
Please login to merge, or discard this patch.
lib/ASN1/Type/UniversalClass.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;
6 6
 
Please login to merge, or discard this patch.
lib/ASN1/Type/Constructed/Set.php 1 patch
Spacing   +3 added lines, -3 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\Constructed;
6 6
 
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     {
34 34
         $obj = clone $this;
35 35
         usort($obj->_elements,
36
-            function (Element $a, Element $b) {
36
+            function(Element $a, Element $b) {
37 37
                 if ($a->typeClass() != $b->typeClass()) {
38 38
                     return $a->typeClass() < $b->typeClass() ? -1 : 1;
39 39
                 }
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
     {
56 56
         $obj = clone $this;
57 57
         usort($obj->_elements,
58
-            function (Element $a, Element $b) {
58
+            function(Element $a, Element $b) {
59 59
                 $a_der = $a->toDER();
60 60
                 $b_der = $b->toDER();
61 61
                 return strcmp($a_der, $b_der);
Please login to merge, or discard this patch.
lib/ASN1/Type/Constructed/Sequence.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\Constructed;
6 6
 
Please login to merge, or discard this patch.
lib/ASN1/Type/Primitive/ObjectIdentifier.php 1 patch
Spacing   +3 added lines, -3 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
 
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      * @return self
69 69
      */
70 70
     protected static function _decodeFromDER(Identifier $identifier, string $data,
71
-        int &$offset)
71
+        int & $offset)
72 72
     {
73 73
         $idx = $offset;
74 74
         $len = Length::expectFromDER($data, $idx)->length();
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
     {
109 109
         return implode(".",
110 110
             array_map(
111
-                function ($num) {
111
+                function($num) {
112 112
                     return gmp_strval($num, 10);
113 113
                 }, $subids));
114 114
     }
Please login to merge, or discard this patch.
lib/ASN1/Type/Primitive/Integer.php 1 patch
Spacing   +3 added lines, -3 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
 
@@ -121,11 +121,11 @@  discard block
 block discarded – undo
121 121
      * @return self
122 122
      */
123 123
     protected static function _decodeFromDER(Identifier $identifier, string $data,
124
-        int &$offset)
124
+        int & $offset)
125 125
     {
126 126
         $idx = $offset;
127 127
         $length = Length::expectFromDER($data, $idx);
128
-        if (gmp_cmp(gmp_init($length->length(),10), gmp_init(PHP_INT_MAX, 10)) >= 0) {
128
+        if (gmp_cmp(gmp_init($length->length(), 10), gmp_init(PHP_INT_MAX, 10)) >= 0) {
129 129
             throw new \RuntimeException("Integer length too large");
130 130
         }
131 131
 
Please login to merge, or discard this patch.
lib/ASN1/Type/Primitive/BitString.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
 
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
      * @return self
179 179
      */
180 180
     protected static function _decodeFromDER(Identifier $identifier, string $data,
181
-        int &$offset)
181
+        int & $offset)
182 182
     {
183 183
         $idx = $offset;
184 184
         $length = Length::expectFromDER($data, $idx);
Please login to merge, or discard this patch.
lib/ASN1/Type/Primitive/GeneralString.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/Boolean.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
 
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      * @return self
63 63
      */
64 64
     protected static function _decodeFromDER(Identifier $identifier, string $data,
65
-        int &$offset)
65
+        int & $offset)
66 66
     {
67 67
         $idx = $offset;
68 68
         Length::expectFromDER($data, $idx, 1);
Please login to merge, or discard this patch.