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 ( b3b8e9...235aa1 )
by Joni
03:30
created
lib/ASN1/Type/Primitive/Integer.php 1 patch
Switch Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -57,11 +57,11 @@
 block discarded – undo
57 57
         $num = gmp_init($this->_number, 10);
58 58
         switch (gmp_sign($num)) {
59 59
             // positive
60
-            case 1:
61
-                return self::_encodePositiveInteger($num);
62
-            // negative
63
-            case -1:
64
-                return self::_encodeNegativeInteger($num);
60
+        case 1:
61
+            return self::_encodePositiveInteger($num);
62
+        // negative
63
+        case -1:
64
+            return self::_encodeNegativeInteger($num);
65 65
         }
66 66
         // zero
67 67
         return "\0";
Please login to merge, or discard this patch.
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.
lib/ASN1/Element.php 1 patch
Switch Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -331,10 +331,10 @@
 block discarded – undo
331 331
     private function _isPseudoType($tag)
332 332
     {
333 333
         switch ($tag) {
334
-            case self::TYPE_STRING:
335
-                return $this instanceof StringType;
336
-            case self::TYPE_TIME:
337
-                return $this instanceof TimeType;
334
+        case self::TYPE_STRING:
335
+            return $this instanceof StringType;
336
+        case self::TYPE_TIME:
337
+            return $this instanceof TimeType;
338 338
         }
339 339
         return false;
340 340
     }
Please login to merge, or discard this patch.