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/Feature/Encodable.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\Feature;
6 6
 
Please login to merge, or discard this patch.
lib/ASN1/Feature/ElementBase.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\Feature;
6 6
 use ASN1\Element;
Please login to merge, or discard this patch.
lib/ASN1/Component/Length.php 1 patch
Spacing   +4 added lines, -4 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\Component;
6 6
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      * @throws DecodeException If decoding fails
50 50
      * @return self
51 51
      */
52
-    public static function fromDER(string $data, int &$offset = null): self
52
+    public static function fromDER(string $data, int & $offset = null): self
53 53
     {
54 54
         $idx = $offset ? $offset : 0;
55 55
         $datalen = strlen($data);
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
      * @throws DecodeException If decoding fails
88 88
      * @return int|string
89 89
      */
90
-    private static function _decodeLongFormLength(int $length, string $data, int &$offset)
90
+    private static function _decodeLongFormLength(int $length, string $data, int & $offset)
91 91
     {
92 92
         // first octet must not be 0xff (spec 8.1.3.5c)
93 93
         if ($length == 127) {
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
      * @throws DecodeException If decoding or expectation fails
117 117
      * @return self
118 118
      */
119
-    public static function expectFromDER(string $data, int &$offset, int $expected = null): self
119
+    public static function expectFromDER(string $data, int & $offset, int $expected = null): self
120 120
     {
121 121
         $idx = $offset;
122 122
         $length = self::fromDER($data, $idx);
Please login to merge, or discard this patch.
lib/ASN1/Component/Identifier.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\Component;
6 6
 
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
      * @throws DecodeException If decoding fails
85 85
      * @return self
86 86
      */
87
-    public static function fromDER(string $data, int &$offset = null): self
87
+    public static function fromDER(string $data, int & $offset = null): self
88 88
     {
89 89
         $idx = $offset ? $offset : 0;
90 90
         $datalen = strlen($data);
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      * @throws DecodeException If decoding fails
118 118
      * @return string Tag number
119 119
      */
120
-    private static function _decodeLongFormTag(string $data, int &$offset): string
120
+    private static function _decodeLongFormTag(string $data, int & $offset): string
121 121
     {
122 122
         $datalen = strlen($data);
123 123
         $tag = gmp_init(0, 10);
Please login to merge, or discard this patch.
lib/ASN1/DERData.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;
6 6
 
Please login to merge, or discard this patch.
lib/ASN1/Element.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;
6 6
 
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
      * @return self
192 192
      */
193 193
     protected static function _decodeFromDER(Identifier $identifier, string $data,
194
-        int &$offset)
194
+        int & $offset)
195 195
     {
196 196
         throw new \BadMethodCallException(
197 197
             __METHOD__ . " must be implemented in derived class.");
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
      *         type, but decoding yields another type
211 211
      * @return self
212 212
      */
213
-    public static function fromDER(string $data, int &$offset = null)
213
+    public static function fromDER(string $data, int & $offset = null)
214 214
     {
215 215
         // decode identifier
216 216
         $idx = $offset ? $offset : 0;
Please login to merge, or discard this patch.
lib/ASN1/Exception/DecodeException.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\Exception;
6 6
 
Please login to merge, or discard this patch.
lib/ASN1/Util/Flags.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\Util;
6 6
 
Please login to merge, or discard this patch.
lib/ASN1/Type/StringType.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.