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 ( 6dd769...c3d4a1 )
by Kevin
06:45 queued 03:07
created
lib/Magento/Actions/Cart/AddToCartFailedException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,4 +2,4 @@
 block discarded – undo
2 2
 
3 3
 namespace Magium\Magento\Actions\Cart;
4 4
 
5
-class AddToCartFailedException extends NoSuchElementException  {}
6 5
\ No newline at end of file
6
+class AddToCartFailedException extends NoSuchElementException {}
7 7
\ No newline at end of file
Please login to merge, or discard this patch.
lib/Magento/Actions/Misc/SubmitContactForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
         $this->testCase->assertElementDisplayed($this->theme->getContactUsSubmitXpath(), WebDriver::BY_XPATH);
50 50
 
51 51
         $this->webDriver->byXpath($this->theme->getContactUsNameXpath())->clear()->sendKeys(
52
-            $this->customer->getFirstName() . ' ' . $this->customer->getLastName()
52
+            $this->customer->getFirstName().' '.$this->customer->getLastName()
53 53
         );
54 54
 
55 55
         $this->webDriver->byXpath($this->theme->getContactUsEmailXpath())->clear()->sendKeys(
Please login to merge, or discard this patch.
lib/Magento/Actions/Checkout/AbstractCheckout.php 1 patch
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,10 +44,14 @@
 block discarded – undo
44 44
         foreach ($this->steps as $step) {
45 45
             if ($step instanceof StepInterface) {
46 46
                 $continue = $step->execute();
47
-                if (!$continue) return;
47
+                if (!$continue) {
48
+                    return;
49
+                }
48 50
 
49 51
                 $continue = $step->nextAction();
50
-                if (!$continue) return;
52
+                if (!$continue) {
53
+                    return;
54
+                }
51 55
             }
52 56
         }
53 57
     }
Please login to merge, or discard this patch.
lib/Magento/Actions/Checkout/PaymentInformation/AuthorizeNet.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
         self::TYPE_VISA                => '4007000000027',
20 20
         self::TYPE_AMERICAN_EXPRESS    => '370000000000002',
21 21
         self::TYPE_DISCOVER            => '6011000000000012',
22
- 	    self::TYPE_MASTERCARD          => '5424000000000015',
22
+            self::TYPE_MASTERCARD          => '5424000000000015',
23 23
         self::TYPE_UNKNOWN             => '0000000000000000'
24 24
     ];
25 25
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     protected function configureType($type)
36 36
     {
37 37
         if (!isset($this->ccNums[$type])) {
38
-            throw new InvalidPaymentInformationException('Unknown payment type: ' . $type);
38
+            throw new InvalidPaymentInformationException('Unknown payment type: '.$type);
39 39
         }
40 40
         $this->setCreditCardNumber($this->ccNums[$type]);
41 41
         $this->setType($type);
Please login to merge, or discard this patch.
lib/Magento/Actions/Checkout/PaymentInformation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
             $this->expiryMonth = '1';
42 42
         }
43 43
         if (!$this->expiryYear) {
44
-            $this->expiryYear = date('Y', time() + (60 * 60 * 24 * 365 * 5));  // January plus 5 years
44
+            $this->expiryYear = date('Y', time()+(60 * 60 * 24 * 365 * 5)); // January plus 5 years
45 45
         }
46 46
         if (!$this->cvv) {
47 47
             $this->cvv = '123';
Please login to merge, or discard this patch.
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/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/Enabler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,8 +43,8 @@
 block discarded – undo
43 43
     {
44 44
         $parts = explode('/', $setting);
45 45
         $this->testCase->assertCount(2, $parts);
46
-        $this->tab  = $parts[0];
47
-        $this->section  = $parts[1];
46
+        $this->tab = $parts[0];
47
+        $this->section = $parts[1];
48 48
     }
49 49
 
50 50
     protected function navigateToSystemConfiguration($setting)
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.