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 ( f0053d...d18898 )
by Kevin
06:45
created
lib/Magento/Actions/Checkout/PaymentMethods/SavedCC.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
 
47 47
         $this->webDriver->byId('ccsave_cc_owner')->clear();
48 48
         $this->webDriver->byId('ccsave_cc_owner')->sendKeys(
49
-            $this->customer->getBillingFirstName() . ' ' . $this->customer->getBillingLastName()
49
+            $this->customer->getBillingFirstName().' '.$this->customer->getBillingLastName()
50 50
         );
51 51
 
52 52
         $select = new WebDriverSelect($this->webDriver->byId('ccsave_cc_type'));
Please login to merge, or discard this patch.
lib/Magento/Actions/Admin/Tables/ClearTableFilters.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
         WebDriver   $webDriver
17 17
     )
18 18
     {
19
-        $this->webDriver    = $webDriver;
19
+        $this->webDriver = $webDriver;
20 20
     }
21 21
 
22 22
     public function clear()
Please login to merge, or discard this patch.
lib/Magento/Actions/Admin/Configuration/AbstractSettingGroup.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
 
32 32
         foreach ($this->settings as $setting => $value) {
33 33
             if ($value !== null) { // Skip items that are null.  May help with test performance
34
-                $this->set($this->section . '::' . $setting, $value);
34
+                $this->set($this->section.'::'.$setting, $value);
35 35
             }
36 36
         }
37 37
 
Please login to merge, or discard this patch.
lib/Magento/Actions/Admin/Configuration/PaymentMethods/CashOnDelivery.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
     const NAME = 'Cash On Delivery Payment';
9 9
     const ACTION = 'Admin\Configuration\PaymentMethods\CashOnDelivery';
10 10
 
11
-    protected $section = 'Payment Methods/' . self::NAME;
11
+    protected $section = 'Payment Methods/'.self::NAME;
12 12
 
13 13
     protected $settings = [
14 14
         'payment_cashondelivery_active'             => 0,
Please login to merge, or discard this patch.
lib/Magento/Actions/Admin/Configuration/PaymentMethods/SavedCC.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
     const NAME = 'Saved CC';
9 9
     const ACTION = 'Admin\Configuration\PaymentMethods\SavedCC';
10 10
 
11
-    protected $section = 'Payment Methods/' . self::NAME;
11
+    protected $section = 'Payment Methods/'.self::NAME;
12 12
 
13 13
     protected $settings = [
14 14
         'payment_ccsave_active'             => 0,
Please login to merge, or discard this patch.
lib/Magento/Actions/Customer/Login.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
                     return;
60 60
                 }
61 61
                 // If we're logged in we don't need to do the login process.  Continue along.
62
-            } catch (NoSuchElementException $e ) {
62
+            } catch (NoSuchElementException $e) {
63 63
                 return;
64 64
             }
65 65
         }
Please login to merge, or discard this patch.
lib/Magento/Actions/Customer/NavigateAndLogin.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
         CustomerLogin $loginNavigator
17 17
 
18 18
     ) {
19
-       $this->login = $login;
19
+        $this->login = $login;
20 20
         $this->loginNavigator = $loginNavigator;
21 21
     }
22 22
 
Please login to merge, or discard this patch.
lib/Magento/Identities/Customer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 {
13 13
     const IDENTITY = 'Customer';
14 14
 
15
-    public $emailAddress          = '[email protected]';
15
+    public $emailAddress = '[email protected]';
16 16
 
17 17
     public $billingFirstName        = 'Kevin';
18 18
     public $billingLastName         = 'Schroeder';
Please login to merge, or discard this patch.
lib/Magento/Assertions/Cart/AddToCartFailed.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
         AbstractThemeConfiguration $themeConfiguration
18 18
     )
19 19
     {
20
-        $this->themeConfiguration   = $themeConfiguration;
20
+        $this->themeConfiguration = $themeConfiguration;
21 21
     }
22 22
 
23 23
     public function assert()
Please login to merge, or discard this patch.