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 ( 235aa1...9b99e5 )
by Joni
03:16
created
lib/ASN1/Type/Primitive/ObjectIdentifier.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
     {
108 108
         return implode(".",
109 109
             array_map(
110
-                function ($num) {
110
+                function($num) {
111 111
                     return gmp_strval($num, 10);
112 112
                 }, $subids));
113 113
     }
Please login to merge, or discard this patch.
lib/ASN1/Type/Primitive/Real.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -30,14 +30,14 @@
 block discarded – undo
30 30
      * @link http://php.net/manual/en/language.types.float.php
31 31
      * @var string
32 32
      */
33
-    const PHP_EXPONENT_DNUM = '/^'. /* @formatter:off */
34
-        '([+\-]?'. // sign
35
-        '(?:'.
36
-            '\d+'. // LNUM
37
-            '|'.
38
-            '(?:\d*\.\d+|\d+\.\d*)'. // DNUM
39
-        '))[eE]'.
40
-        '([+\-]?\d+)'. // exponent
33
+    const PHP_EXPONENT_DNUM = '/^' . /* @formatter:off */
34
+        '([+\-]?' . // sign
35
+        '(?:' .
36
+            '\d+' . // LNUM
37
+            '|' .
38
+            '(?:\d*\.\d+|\d+\.\d*)' . // DNUM
39
+        '))[eE]' .
40
+        '([+\-]?\d+)' . // exponent
41 41
     '$/'; /* @formatter:on */
42 42
     
43 43
     /**
Please login to merge, or discard this patch.
lib/ASN1/Type/Constructed/Set.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
     {
32 32
         $obj = clone $this;
33 33
         usort($obj->_elements,
34
-            function (Element $a, Element $b) {
34
+            function(Element $a, Element $b) {
35 35
                 if ($a->typeClass() != $b->typeClass()) {
36 36
                     return $a->typeClass() < $b->typeClass() ? -1 : 1;
37 37
                 }
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     {
54 54
         $obj = clone $this;
55 55
         usort($obj->_elements,
56
-            function (Element $a, Element $b) {
56
+            function(Element $a, Element $b) {
57 57
                 $a_der = $a->toDER();
58 58
                 $b_der = $b->toDER();
59 59
                 return strcmp($a_der, $b_der);
Please login to merge, or discard this patch.
lib/ASN1/Type/Structure.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -232,7 +232,7 @@
 block discarded – undo
232 232
     {
233 233
         if (!isset($this->_unspecifiedTypes)) {
234 234
             $this->_unspecifiedTypes = array_map(
235
-                function (Element $el) {
235
+                function(Element $el) {
236 236
                     return new UnspecifiedType($el);
237 237
                 }, $this->_elements);
238 238
         }
Please login to merge, or discard this patch.