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 Failed
Push — master ( 405cf3...79c9ba )
by Joni
04:48
created
lib/X509/Certificate/Time.php 1 patch
Switch Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -92,16 +92,16 @@
 block discarded – undo
92 92
     {
93 93
         $dt = $this->_dt;
94 94
         switch ($this->_type) {
95
-            case Element::TYPE_UTC_TIME:
96
-                return new UTCTime($dt);
97
-            case Element::TYPE_GENERALIZED_TIME:
98
-                // GeneralizedTime must not contain fractional seconds
99
-                // (rfc5280 4.1.2.5.2)
100
-                if (0 !== intval($dt->format('u'))) {
101
-                    // remove fractional seconds (round down)
102
-                    $dt = self::_roundDownFractionalSeconds($dt);
103
-                }
104
-                return new GeneralizedTime($dt);
95
+        case Element::TYPE_UTC_TIME:
96
+            return new UTCTime($dt);
97
+        case Element::TYPE_GENERALIZED_TIME:
98
+            // GeneralizedTime must not contain fractional seconds
99
+            // (rfc5280 4.1.2.5.2)
100
+            if (0 !== intval($dt->format('u'))) {
101
+                // remove fractional seconds (round down)
102
+                $dt = self::_roundDownFractionalSeconds($dt);
103
+            }
104
+            return new GeneralizedTime($dt);
105 105
         }
106 106
         throw new \UnexpectedValueException(
107 107
             'Time type ' . Element::tagToName($this->_type) . ' not supported.');
Please login to merge, or discard this patch.