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
Push — master ( 9b99e5...0ba67e )
by Joni
06:10
created
lib/ASN1/Type/Primitive/RelativeOID.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
      * @return self
40 40
      */
41 41
     protected static function _decodeFromDER(Identifier $identifier, string $data,
42
-        int &$offset): ElementBase
42
+        int & $offset): ElementBase
43 43
     {
44 44
         $idx = $offset;
45 45
         $len = Length::expectFromDER($data, $idx)->length();
Please login to merge, or discard this patch.
lib/ASN1/Type/Primitive/ObjectIdentifier.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
      * @return self
70 70
      */
71 71
     protected static function _decodeFromDER(Identifier $identifier, string $data,
72
-        int &$offset): ElementBase
72
+        int & $offset): ElementBase
73 73
     {
74 74
         $idx = $offset;
75 75
         $len = Length::expectFromDER($data, $idx)->length();
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
     {
110 110
         return implode(".",
111 111
             array_map(
112
-                function ($num) {
112
+                function($num) {
113 113
                     return gmp_strval($num, 10);
114 114
                 }, $subids));
115 115
     }
Please login to merge, or discard this patch.
lib/ASN1/Type/Primitive/GeneralizedTime.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
      * @return self
93 93
      */
94 94
     protected static function _decodeFromDER(Identifier $identifier, string $data,
95
-        int &$offset): ElementBase
95
+        int & $offset): ElementBase
96 96
     {
97 97
         $idx = $offset;
98 98
         $length = Length::expectFromDER($data, $idx);
Please login to merge, or discard this patch.
lib/ASN1/Type/Primitive/UTCTime.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
      * @return self
65 65
      */
66 66
     protected static function _decodeFromDER(Identifier $identifier, string $data,
67
-        int &$offset): ElementBase
67
+        int & $offset): ElementBase
68 68
     {
69 69
         $idx = $offset;
70 70
         $length = Length::expectFromDER($data, $idx);
Please login to merge, or discard this patch.
lib/ASN1/Type/Primitive/Integer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@
 block discarded – undo
122 122
      * @return self
123 123
      */
124 124
     protected static function _decodeFromDER(Identifier $identifier, string $data,
125
-        int &$offset): ElementBase
125
+        int & $offset): ElementBase
126 126
     {
127 127
         $idx = $offset;
128 128
         $length = Length::expectFromDER($data, $idx);
Please login to merge, or discard this patch.