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
Push — develop ( 699529...58ba7e )
by Alexandre
01:44
created
Helper/Cipher.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -133,8 +133,7 @@
 block discarded – undo
133 133
             $clear = openssl_decrypt( $string, self::METHOD, $keyAndIv['key'], 0, $keyAndIv['iv'] );
134 134
             if  ( $clear !== false ) {
135 135
                 $string = $clear;
136
-            }
137
-            else {
136
+            } else {
138 137
                 break;
139 138
             }
140 139
         }
Please login to merge, or discard this patch.
Model/AbstractPlugin.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -172,8 +172,7 @@
 block discarded – undo
172 172
         foreach( $object->getData() as $key => & $value ) {
173 173
             if ( in_array( $key, $this->fields ) ) {
174 174
                 $object->setData($key, $this->cipher->decipher( $value ) );
175
-            }
176
-            else if ( in_array( $key, $this->specialFields ) ) {
175
+            } else if ( in_array( $key, $this->specialFields ) ) {
177 176
                 $parts = explode(' ', $object->getData( $key) );
178 177
                 foreach( $parts as & $part ) {
179 178
                     $clear = $this->cipher->decipher($part);
Please login to merge, or discard this patch.
Model/ValidatorPlugin.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -61,8 +61,7 @@  discard block
 block discarded – undo
61 61
                     $objectsToProcess[] = $address;
62 62
                 }
63 63
             }
64
-        }
65
-        else if (
64
+        } else if (
66 65
             ( $value instanceof \Magento\Quote\Model\Quote\Address ) &&
67 66
             $value->getQuote()->hasData('is_ciphered')
68 67
         ) {
@@ -72,8 +71,7 @@  discard block
 block discarded – undo
72 71
                 $objectsToProcess[] = $value;
73 72
             }
74 73
             $objectsToProcess[] = $quote;
75
-        }
76
-        else if (
74
+        } else if (
77 75
             ( $value instanceof \Magento\Sales\Model\Order\Address ) &&
78 76
             $value->getOrder()->hasData('is_ciphered')
79 77
         ) {
Please login to merge, or discard this patch.