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/Themes/MagentoEE114/Customer/ThemeConfiguration.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -7,26 +7,26 @@  discard block
 block discarded – undo
7 7
 class ThemeConfiguration extends AbstractThemeConfiguration
8 8
 {
9 9
 
10
-    public $accountNavigationXpath   = '//div[contains(concat(" ",normalize-space(@class)," ")," block-account ")]/descendant::a[.="%s"]';
10
+    public $accountNavigationXpath = '//div[contains(concat(" ",normalize-space(@class)," ")," block-account ")]/descendant::a[.="%s"]';
11 11
     public $accountSectionHeaderXpath = '//div[contains(concat(" ",normalize-space(@class)," ")," col-main ")]/descendant::h1[.="%s"]';
12 12
 
13
-    public $orderPageName     = '{{My Orders}}';
13
+    public $orderPageName = '{{My Orders}}';
14 14
 
15 15
     public $viewOrderLinkXpath = '//td[@class="number" and .="%s"]/../td/descendant::a[.="{{View Order}}"]';
16 16
 
17
-    public $orderPageTitleContainsText    = '{{Order}} #';
17
+    public $orderPageTitleContainsText = '{{Order}} #';
18 18
 
19 19
     /**
20 20
      * @var string Xpath for the customer email form element
21 21
      */
22 22
 
23
-    public $loginUsernameField           = '//input[@type="email" and @id="email"]';
23
+    public $loginUsernameField = '//input[@type="email" and @id="email"]';
24 24
 
25 25
     /**
26 26
      * @var string Xpath for the customer password form element
27 27
      */
28 28
 
29
-    public $loginPasswordField           = '//input[@type="password" and @id="pass"]';
29
+    public $loginPasswordField = '//input[@type="password" and @id="pass"]';
30 30
 
31 31
 
32 32
     /**
@@ -41,19 +41,19 @@  discard block
 block discarded – undo
41 41
     public $orderShippingMethod = '//h2[.="{{Shipping Method}}"]/../../descendant::div[contains(concat(" ",normalize-space(@class)," ")," box-content ")]';
42 42
     public $orderPaymentMethod = '//h2[.="{{Payment Method}}"]/../../descendant::div[contains(concat(" ",normalize-space(@class)," ")," box-content ")]';
43 43
 
44
-    public $orderItemNameXpath           = '//table[@id="my-orders-table"]/tbody/tr[%d]/descendant::h3[contains(concat(" ",normalize-space(@class)," ")," product-name ")]';
44
+    public $orderItemNameXpath = '//table[@id="my-orders-table"]/tbody/tr[%d]/descendant::h3[contains(concat(" ",normalize-space(@class)," ")," product-name ")]';
45 45
     public $orderItemSkuXpath           = '//table[@id="my-orders-table"]/tbody/tr[%d]/descendant::td[@data-rwd-label="SKU"]';
46
-    public $orderItemPriceXpath           = '//table[@id="my-orders-table"]/tbody/tr[%d]/descendant::td[@data-rwd-label="Price"]/descendant::span[@class="price"]';
46
+    public $orderItemPriceXpath = '//table[@id="my-orders-table"]/tbody/tr[%d]/descendant::td[@data-rwd-label="Price"]/descendant::span[@class="price"]';
47 47
     public $orderItemQtyXpath           = '//table[@id="my-orders-table"]/tbody/tr[%d]/descendant::td[@data-rwd-label="Qty"]';
48 48
 
49 49
     public $orderItemQtyOrderedRegex = '/{{Ordered}}:\s+(\d+)/';
50 50
     public $orderItemQtyShippedRegex = '/{{Shipped}}:\s+(\d+)/';
51 51
 
52
-    public $orderItemSubtotalXpath           = '//table[@id="my-orders-table"]/tbody/tr[%d]/descendant::td[@data-rwd-label="Subtotal"]/descendant::span[@class="price"]';
52
+    public $orderItemSubtotalXpath = '//table[@id="my-orders-table"]/tbody/tr[%d]/descendant::td[@data-rwd-label="Subtotal"]/descendant::span[@class="price"]';
53 53
 
54 54
     public $orderSubtotalXpath             = '//table[@id="my-orders-table"]/descendant::tr[contains(concat(" ",normalize-space(@class)," ")," subtotal ")]/td[2]/span[@class="price"]';
55 55
     public $orderShippingAndHandlingXpath  = '//table[@id="my-orders-table"]/descendant::tr[contains(concat(" ",normalize-space(@class)," ")," shipping ")]/td[2]/span[@class="price"]';
56
-    public $orderTaxXpath                 = '//table[@id="my-orders-table"]/descendant::td[concat(" ",normalize-space(.)," ") = " {{Tax}} "]/following-sibling::td[1]/span[@class="price"]';
56
+    public $orderTaxXpath = '//table[@id="my-orders-table"]/descendant::td[concat(" ",normalize-space(.)," ") = " {{Tax}} "]/following-sibling::td[1]/span[@class="price"]';
57 57
     public $orderGrandTotalXpath         = '//table[@id="my-orders-table"]/descendant::tr[contains(concat(" ",normalize-space(@class)," ")," grand_total ")]/td[2]/descendant::span[@class="price"]';
58 58
 
59 59
     public $orderDateXpath               = '//p[@class="order-date"]';
Please login to merge, or discard this patch.
lib/Magento/Navigators/BaseMenu.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,9 +35,9 @@
 block discarded – undo
35 35
     {
36 36
         $xpath = $this->themeConfiguration->getNavigationBaseXPathSelector();
37 37
         usleep(500000); // Give the UI some time to update
38
-        $xpath .= '/descendant::' . $this->themeConfiguration->getNavigationChildXPathSelector($path);
38
+        $xpath .= '/descendant::'.$this->themeConfiguration->getNavigationChildXPathSelector($path);
39 39
 
40
-        $element = $this->webdriver->byXpath($xpath . '/a');
40
+        $element = $this->webdriver->byXpath($xpath.'/a');
41 41
 
42 42
         $this->execute($element);
43 43
 
Please login to merge, or discard this patch.
lib/Magento/AbstractMagentoTestCase.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
         // If we are passed just the class name we will prepend it with Magium\Magento\Actions\Checkout\PaymentMethods
29 29
         if (strpos($method, '\\') === false) {
30
-            $method = 'Checkout\PaymentMethods\\' . $method;
30
+            $method = 'Checkout\PaymentMethods\\'.$method;
31 31
             $method = self::resolveClass($method, 'Actions');
32 32
         }
33 33
         $reflection = new \ReflectionClass($method);
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
 
71 71
         // If we are passed just the class name we will prepend it with Magium\Magento\Actions\Checkout\PaymentMethods
72 72
         if (strpos($method, '\\') === false) {
73
-            $method = 'Magium\Magento\Actions\Checkout\ShippingMethods\\' . $method;
73
+            $method = 'Magium\Magento\Actions\Checkout\ShippingMethods\\'.$method;
74 74
         }
75 75
         $reflection = new \ReflectionClass($method);
76 76
         if ($reflection->implementsInterface('Magium\Magento\Actions\Checkout\ShippingMethods\ShippingMethodInterface')) {
@@ -87,12 +87,12 @@  discard block
 block discarded – undo
87 87
         if ($reflection->isSubclassOf('Magium\Magento\Themes\NavigableThemeInterface')) {
88 88
             // Not entirely sure of hardcoding the various interface types.  May make this configurable
89 89
             parent::switchThemeConfiguration($fullyQualifiedClassName);
90
-            $this->setTypePreference('Magium\Magento\Themes\AbstractThemeConfiguration',$fullyQualifiedClassName);
91
-            $this->setTypePreference('Magium\Magento\Themes\NavigableThemeInterface',$fullyQualifiedClassName);
92
-            $this->setTypePreference('Magium\Themes\BaseThemeInterface',$fullyQualifiedClassName);
90
+            $this->setTypePreference('Magium\Magento\Themes\AbstractThemeConfiguration', $fullyQualifiedClassName);
91
+            $this->setTypePreference('Magium\Magento\Themes\NavigableThemeInterface', $fullyQualifiedClassName);
92
+            $this->setTypePreference('Magium\Themes\BaseThemeInterface', $fullyQualifiedClassName);
93 93
 
94
-            $this->setTypePreference('Magium\Magento\Themes\Customer\AbstractThemeConfiguration',$this->getTheme()->getCustomerThemeClass());
95
-            $this->setTypePreference('Magium\Magento\Themes\OnePageCheckout\AbstractThemeConfiguration',$this->getTheme()->getCheckoutThemeClass());
94
+            $this->setTypePreference('Magium\Magento\Themes\Customer\AbstractThemeConfiguration', $this->getTheme()->getCustomerThemeClass());
95
+            $this->setTypePreference('Magium\Magento\Themes\OnePageCheckout\AbstractThemeConfiguration', $this->getTheme()->getCheckoutThemeClass());
96 96
         } else {
97 97
             throw new InvalidConfigurationException('The theme configuration extend Magium\Magento\Themes\NavigableThemeInterface');
98 98
         }
Please login to merge, or discard this patch.
lib/Magento/Themes/Magento19/OnePageCheckout/ThemeConfiguration.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     public $shippingNewAddressXpath = '//select[@id="shipping-address-select"]/option[.="{{New Address}}"]';
58 58
 
59 59
     public $billingContinueButtonXpath = '//div[@id="billing-buttons-container"]/descendant::button[@title="{{Continue}}"]';
60
-    public $billingContinueCompletedXpath   = '//span[@id="billing-please-wait"]';
60
+    public $billingContinueCompletedXpath = '//span[@id="billing-please-wait"]';
61 61
 
62 62
 
63 63
     public $shippingFirstNameXpath      = '//input[@id="shipping:firstname"]';
@@ -79,24 +79,24 @@  discard block
 block discarded – undo
79 79
     public $shippingTelephoneXpath      = '//input[@id="shipping:telephone"]';
80 80
     public $shippingFaxXpath            = '//input[@id="shipping:fax"]';
81 81
     public $shippingContinueButtonXpath = '//div[@id="shipping-buttons-container"]/descendant::button[@title="{{Continue}}"]';
82
-    public $shippingContinueCompletedXpath   = '//span[@id="shipping-please-wait"]';
83
-    public $shippingMethodContinueCompletedXpath   = '//span[@id="shipping-method-please-wait"]';
82
+    public $shippingContinueCompletedXpath = '//span[@id="shipping-please-wait"]';
83
+    public $shippingMethodContinueCompletedXpath = '//span[@id="shipping-method-please-wait"]';
84 84
 
85 85
     public $shippingMethodContinueButtonXpath = '//div[@id="shipping-method-buttons-container"]/descendant::button';
86
-    public $defaultShippingXpath             = '//input[@name="shipping_method"]';
86
+    public $defaultShippingXpath = '//input[@name="shipping_method"]';
87 87
 
88 88
     public $paymentMethodContinueCompleteXpath = '//span[@id="payment-please-wait"]';
89 89
 
90 90
     public $paymentMethodContinueButtonXpath = '//div[@id="payment-buttons-container"]/descendant::button';
91 91
 
92
-    public $placeOrderButtonXpath        = '//div[@id="review-buttons-container"]/descendant::button[@title="{{Place Order}}"]';
92
+    public $placeOrderButtonXpath = '//div[@id="review-buttons-container"]/descendant::button[@title="{{Place Order}}"]';
93 93
 
94 94
     public $orderReceivedCompleteXpath = '//h1[.="Your order has been received."]';
95 95
 
96 96
     public $shippingMethodFormXpath      = '//form[@id="co-shipping-method-form"]';
97 97
 
98 98
     public $passwordInputXpath           = '//input[@id="billing:customer_password"]';
99
-    public $confirmPasswordInputXpath           = '//input[@id="billing:confirm_password"]';
99
+    public $confirmPasswordInputXpath = '//input[@id="billing:confirm_password"]';
100 100
 
101 101
     /**
102 102
      * This is a hard one.  Each of the summary checkout products will be iterated over until they cannot be found. Having
@@ -113,10 +113,10 @@  discard block
 block discarded – undo
113 113
     public $cartSummaryCheckoutProductLoopQtyXpath = '(//table[@id="checkout-review-table"]/tbody/descendant::td[@data-rwd-label="{{Qty}}"])[%d]';
114 114
     public $cartSummaryCheckoutProductLoopSubtotalXpath = '(//table[@id="checkout-review-table"]/tbody/descendant::td[@data-rwd-label="{{Subtotal}}"])[%d]';
115 115
 
116
-    public $cartSummaryCheckoutSubTotal              = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Subtotal}} "]/../td[2]';
117
-    public $cartSummaryCheckoutTax              = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Tax}} "]/../td[2]';
118
-    public $cartSummaryCheckoutGrandTotal              = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Grand Total}} "]/../td[2]';
119
-    public $cartSummaryCheckoutShippingTotal              = '//table[@id="checkout-review-table"]/tfoot/tr/td[contains(concat(" ",normalize-space(.)," "), " {{Shipping & Handling}} (")]/../td[2]';
116
+    public $cartSummaryCheckoutSubTotal = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Subtotal}} "]/../td[2]';
117
+    public $cartSummaryCheckoutTax = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Tax}} "]/../td[2]';
118
+    public $cartSummaryCheckoutGrandTotal = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Grand Total}} "]/../td[2]';
119
+    public $cartSummaryCheckoutShippingTotal = '//table[@id="checkout-review-table"]/tfoot/tr/td[contains(concat(" ",normalize-space(.)," "), " {{Shipping & Handling}} (")]/../td[2]';
120 120
 
121 121
     public $orderNumberExtractorXpath = '//p[contains(., "Your order # is:")]';
122 122
 
Please login to merge, or discard this patch.
lib/Magento/Themes/MagentoEE114/OnePageCheckout/ThemeConfiguration.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     public $shippingNewAddressXpath = '//select[@id="shipping-address-select"]/option[.="{{New Address}}"]';
58 58
 
59 59
     public $billingContinueButtonXpath = '//div[@id="billing-buttons-container"]/descendant::button[@title="{{Continue}}"]';
60
-    public $billingContinueCompletedXpath   = '//span[@id="billing-please-wait"]';
60
+    public $billingContinueCompletedXpath = '//span[@id="billing-please-wait"]';
61 61
 
62 62
 
63 63
     public $shippingFirstNameXpath      = '//input[@id="shipping:firstname"]';
@@ -79,24 +79,24 @@  discard block
 block discarded – undo
79 79
     public $shippingTelephoneXpath      = '//input[@id="shipping:telephone"]';
80 80
     public $shippingFaxXpath            = '//input[@id="shipping:fax"]';
81 81
     public $shippingContinueButtonXpath = '//div[@id="shipping-buttons-container"]/descendant::button[@title="{{Continue}}"]';
82
-    public $shippingContinueCompletedXpath   = '//span[@id="shipping-please-wait"]';
83
-    public $shippingMethodContinueCompletedXpath   = '//span[@id="shipping-method-please-wait"]';
82
+    public $shippingContinueCompletedXpath = '//span[@id="shipping-please-wait"]';
83
+    public $shippingMethodContinueCompletedXpath = '//span[@id="shipping-method-please-wait"]';
84 84
 
85 85
     public $shippingMethodContinueButtonXpath = '//div[@id="shipping-method-buttons-container"]/descendant::button';
86
-    public $defaultShippingXpath             = '//input[@name="shipping_method"]';
86
+    public $defaultShippingXpath = '//input[@name="shipping_method"]';
87 87
 
88 88
     public $paymentMethodContinueCompleteXpath = '//span[@id="payment-please-wait"]';
89 89
 
90 90
     public $paymentMethodContinueButtonXpath = '//div[@id="payment-buttons-container"]/descendant::button';
91 91
 
92
-    public $placeOrderButtonXpath        = '//div[@id="review-buttons-container"]/descendant::button[@title="{{Place Order}}"]';
92
+    public $placeOrderButtonXpath = '//div[@id="review-buttons-container"]/descendant::button[@title="{{Place Order}}"]';
93 93
 
94 94
     public $orderReceivedCompleteXpath = '//h1[.="Your order has been received."]';
95 95
 
96 96
     public $shippingMethodFormXpath      = '//form[@id="co-shipping-method-form"]';
97 97
 
98 98
     public $passwordInputXpath           = '//input[@id="billing:customer_password"]';
99
-    public $confirmPasswordInputXpath           = '//input[@id="billing:confirm_password"]';
99
+    public $confirmPasswordInputXpath = '//input[@id="billing:confirm_password"]';
100 100
 
101 101
     /**
102 102
      * This is a hard one.  Each of the summary checkout products will be iterated over until they cannot be found. Having
@@ -113,10 +113,10 @@  discard block
 block discarded – undo
113 113
     public $cartSummaryCheckoutProductLoopQtyXpath = '(//table[@id="checkout-review-table"]/tbody/descendant::td[@data-rwd-label="{{Qty}}"])[%d]';
114 114
     public $cartSummaryCheckoutProductLoopSubtotalXpath = '(//table[@id="checkout-review-table"]/tbody/descendant::td[@data-rwd-label="{{Subtotal}}"])[%d]';
115 115
 
116
-    public $cartSummaryCheckoutSubTotal              = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Subtotal}} "]/../td[2]';
117
-    public $cartSummaryCheckoutTax              = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Tax}} "]/../td[2]';
118
-    public $cartSummaryCheckoutGrandTotal              = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Grand Total}} "]/../td[2]';
119
-    public $cartSummaryCheckoutShippingTotal              = '//table[@id="checkout-review-table"]/tfoot/tr/td[contains(concat(" ",normalize-space(.)," "), " {{Shipping & Handling}} (")]/../td[2]';
116
+    public $cartSummaryCheckoutSubTotal = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Subtotal}} "]/../td[2]';
117
+    public $cartSummaryCheckoutTax = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Tax}} "]/../td[2]';
118
+    public $cartSummaryCheckoutGrandTotal = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Grand Total}} "]/../td[2]';
119
+    public $cartSummaryCheckoutShippingTotal = '//table[@id="checkout-review-table"]/tfoot/tr/td[contains(concat(" ",normalize-space(.)," "), " {{Shipping & Handling}} (")]/../td[2]';
120 120
 
121 121
     public $orderNumberExtractorXpath = '//p[contains(., "Your order # is:")]';
122 122
 
Please login to merge, or discard this patch.
lib/Magento/Extractors/Admin/Widget/Attribute.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     }
32 32
 
33 33
     /**
34
-     * @param $label
34
+     * @param string $label
35 35
      * @return WebDriverElement
36 36
      */
37 37
 
Please login to merge, or discard this patch.
lib/Magento/Themes/MagentoEE113/OnePageCheckout/ThemeConfiguration.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     public $shippingNewAddressXpath = '//select[@id="shipping-address-select"]/option[.="{{New Address}}"]';
58 58
 
59 59
     public $billingContinueButtonXpath = '//div[@id="billing-buttons-container"]/descendant::button[@title="{{Continue}}"]';
60
-    public $billingContinueCompletedXpath   = '//span[@id="billing-please-wait"]';
60
+    public $billingContinueCompletedXpath = '//span[@id="billing-please-wait"]';
61 61
 
62 62
 
63 63
     public $shippingFirstNameXpath      = '//input[@id="shipping:firstname"]';
@@ -79,24 +79,24 @@  discard block
 block discarded – undo
79 79
     public $shippingTelephoneXpath      = '//input[@id="shipping:telephone"]';
80 80
     public $shippingFaxXpath            = '//input[@id="shipping:fax"]';
81 81
     public $shippingContinueButtonXpath = '//div[@id="shipping-buttons-container"]/descendant::button[@title="{{Continue}}"]';
82
-    public $shippingContinueCompletedXpath   = '//span[@id="shipping-please-wait"]';
83
-    public $shippingMethodContinueCompletedXpath   = '//span[@id="shipping-method-please-wait"]';
82
+    public $shippingContinueCompletedXpath = '//span[@id="shipping-please-wait"]';
83
+    public $shippingMethodContinueCompletedXpath = '//span[@id="shipping-method-please-wait"]';
84 84
 
85 85
     public $shippingMethodContinueButtonXpath = '//div[@id="shipping-method-buttons-container"]/descendant::button';
86
-    public $defaultShippingXpath             = '//input[@name="shipping_method"]';
86
+    public $defaultShippingXpath = '//input[@name="shipping_method"]';
87 87
 
88 88
     public $paymentMethodContinueCompleteXpath = '//span[@id="payment-please-wait"]';
89 89
 
90 90
     public $paymentMethodContinueButtonXpath = '//div[@id="payment-buttons-container"]/descendant::button';
91 91
 
92
-    public $placeOrderButtonXpath        = '//div[@id="review-buttons-container"]/descendant::button[@title="{{Place Order}}"]';
92
+    public $placeOrderButtonXpath = '//div[@id="review-buttons-container"]/descendant::button[@title="{{Place Order}}"]';
93 93
 
94 94
     public $orderReceivedCompleteXpath = '//h1[.="Your order has been received."]';
95 95
 
96 96
     public $shippingMethodFormXpath      = '//form[@id="co-shipping-method-form"]';
97 97
 
98 98
     public $passwordInputXpath           = '//input[@id="billing:customer_password"]';
99
-    public $confirmPasswordInputXpath           = '//input[@id="billing:confirm_password"]';
99
+    public $confirmPasswordInputXpath = '//input[@id="billing:confirm_password"]';
100 100
 
101 101
     /**
102 102
      * This is a hard one.  Each of the summary checkout products will be iterated over until they cannot be found. Having
@@ -113,10 +113,10 @@  discard block
 block discarded – undo
113 113
     public $cartSummaryCheckoutProductLoopQtyXpath = '(//table[@id="checkout-review-table"]/tbody/descendant::td[@data-rwd-label="{{Qty}}"])[%d]';
114 114
     public $cartSummaryCheckoutProductLoopSubtotalXpath = '(//table[@id="checkout-review-table"]/tbody/descendant::td[@data-rwd-label="{{Subtotal}}"])[%d]';
115 115
 
116
-    public $cartSummaryCheckoutSubTotal              = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Subtotal}} "]/../td[2]';
117
-    public $cartSummaryCheckoutTax              = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Tax}} "]/../td[2]';
118
-    public $cartSummaryCheckoutGrandTotal              = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Grand Total}} "]/../td[2]';
119
-    public $cartSummaryCheckoutShippingTotal              = '//table[@id="checkout-review-table"]/tfoot/tr/td[contains(concat(" ",normalize-space(.)," "), " {{Shipping & Handling}} (")]/../td[2]';
116
+    public $cartSummaryCheckoutSubTotal = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Subtotal}} "]/../td[2]';
117
+    public $cartSummaryCheckoutTax = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Tax}} "]/../td[2]';
118
+    public $cartSummaryCheckoutGrandTotal = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Grand Total}} "]/../td[2]';
119
+    public $cartSummaryCheckoutShippingTotal = '//table[@id="checkout-review-table"]/tfoot/tr/td[contains(concat(" ",normalize-space(.)," "), " {{Shipping & Handling}} (")]/../td[2]';
120 120
 
121 121
     public $orderNumberExtractorXpath = '//p[contains(., "Your order # is:")]';
122 122
 
Please login to merge, or discard this patch.
lib/Magento/Themes/MagentoEE112/OnePageCheckout/ThemeConfiguration.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     public $shippingNewAddressXpath = '//select[@id="shipping-address-select"]/option[.="{{New Address}}"]';
58 58
 
59 59
     public $billingContinueButtonXpath = '//div[@id="billing-buttons-container"]/descendant::button[@title="{{Continue}}"]';
60
-    public $billingContinueCompletedXpath   = '//span[@id="billing-please-wait"]';
60
+    public $billingContinueCompletedXpath = '//span[@id="billing-please-wait"]';
61 61
 
62 62
 
63 63
     public $shippingFirstNameXpath      = '//input[@id="shipping:firstname"]';
@@ -79,24 +79,24 @@  discard block
 block discarded – undo
79 79
     public $shippingTelephoneXpath      = '//input[@id="shipping:telephone"]';
80 80
     public $shippingFaxXpath            = '//input[@id="shipping:fax"]';
81 81
     public $shippingContinueButtonXpath = '//div[@id="shipping-buttons-container"]/descendant::button[@title="{{Continue}}"]';
82
-    public $shippingContinueCompletedXpath   = '//span[@id="shipping-please-wait"]';
83
-    public $shippingMethodContinueCompletedXpath   = '//span[@id="shipping-method-please-wait"]';
82
+    public $shippingContinueCompletedXpath = '//span[@id="shipping-please-wait"]';
83
+    public $shippingMethodContinueCompletedXpath = '//span[@id="shipping-method-please-wait"]';
84 84
 
85 85
     public $shippingMethodContinueButtonXpath = '//div[@id="shipping-method-buttons-container"]/descendant::button';
86
-    public $defaultShippingXpath             = '//input[@name="shipping_method"]';
86
+    public $defaultShippingXpath = '//input[@name="shipping_method"]';
87 87
 
88 88
     public $paymentMethodContinueCompleteXpath = '//span[@id="payment-please-wait"]';
89 89
 
90 90
     public $paymentMethodContinueButtonXpath = '//div[@id="payment-buttons-container"]/descendant::button';
91 91
 
92
-    public $placeOrderButtonXpath        = '//div[@id="review-buttons-container"]/descendant::button[@title="{{Place Order}}"]';
92
+    public $placeOrderButtonXpath = '//div[@id="review-buttons-container"]/descendant::button[@title="{{Place Order}}"]';
93 93
 
94 94
     public $orderReceivedCompleteXpath = '//h1[.="Your order has been received."]';
95 95
 
96 96
     public $shippingMethodFormXpath      = '//form[@id="co-shipping-method-form"]';
97 97
 
98 98
     public $passwordInputXpath           = '//input[@id="billing:customer_password"]';
99
-    public $confirmPasswordInputXpath           = '//input[@id="billing:confirm_password"]';
99
+    public $confirmPasswordInputXpath = '//input[@id="billing:confirm_password"]';
100 100
 
101 101
     /**
102 102
      * This is a hard one.  Each of the summary checkout products will be iterated over until they cannot be found. Having
@@ -113,10 +113,10 @@  discard block
 block discarded – undo
113 113
     public $cartSummaryCheckoutProductLoopQtyXpath = '(//table[@id="checkout-review-table"]/tbody/descendant::td[@data-rwd-label="{{Qty}}"])[%d]';
114 114
     public $cartSummaryCheckoutProductLoopSubtotalXpath = '(//table[@id="checkout-review-table"]/tbody/descendant::td[@data-rwd-label="{{Subtotal}}"])[%d]';
115 115
 
116
-    public $cartSummaryCheckoutSubTotal              = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Subtotal}} "]/../td[2]';
117
-    public $cartSummaryCheckoutTax              = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Tax}} "]/../td[2]';
118
-    public $cartSummaryCheckoutGrandTotal              = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Grand Total}} "]/../td[2]';
119
-    public $cartSummaryCheckoutShippingTotal              = '//table[@id="checkout-review-table"]/tfoot/tr/td[contains(concat(" ",normalize-space(.)," "), " {{Shipping & Handling}} (")]/../td[2]';
116
+    public $cartSummaryCheckoutSubTotal = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Subtotal}} "]/../td[2]';
117
+    public $cartSummaryCheckoutTax = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Tax}} "]/../td[2]';
118
+    public $cartSummaryCheckoutGrandTotal = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Grand Total}} "]/../td[2]';
119
+    public $cartSummaryCheckoutShippingTotal = '//table[@id="checkout-review-table"]/tfoot/tr/td[contains(concat(" ",normalize-space(.)," "), " {{Shipping & Handling}} (")]/../td[2]';
120 120
 
121 121
     public $orderNumberExtractorXpath = '//p[contains(., "Your order # is:")]';
122 122
 
Please login to merge, or discard this patch.
lib/Magento/Themes/Magento18/OnePageCheckout/ThemeConfiguration.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     public $shippingNewAddressXpath = '//select[@id="shipping-address-select"]/option[.="{{New Address}}"]';
58 58
 
59 59
     public $billingContinueButtonXpath = '//div[@id="billing-buttons-container"]/descendant::button[@title="{{Continue}}"]';
60
-    public $billingContinueCompletedXpath   = '//span[@id="billing-please-wait"]';
60
+    public $billingContinueCompletedXpath = '//span[@id="billing-please-wait"]';
61 61
 
62 62
 
63 63
     public $shippingFirstNameXpath      = '//input[@id="shipping:firstname"]';
@@ -79,24 +79,24 @@  discard block
 block discarded – undo
79 79
     public $shippingTelephoneXpath      = '//input[@id="shipping:telephone"]';
80 80
     public $shippingFaxXpath            = '//input[@id="shipping:fax"]';
81 81
     public $shippingContinueButtonXpath = '//div[@id="shipping-buttons-container"]/descendant::button[@title="{{Continue}}"]';
82
-    public $shippingContinueCompletedXpath   = '//span[@id="shipping-please-wait"]';
83
-    public $shippingMethodContinueCompletedXpath   = '//span[@id="shipping-method-please-wait"]';
82
+    public $shippingContinueCompletedXpath = '//span[@id="shipping-please-wait"]';
83
+    public $shippingMethodContinueCompletedXpath = '//span[@id="shipping-method-please-wait"]';
84 84
 
85 85
     public $shippingMethodContinueButtonXpath = '//div[@id="shipping-method-buttons-container"]/descendant::button';
86
-    public $defaultShippingXpath             = '//input[@name="shipping_method"]';
86
+    public $defaultShippingXpath = '//input[@name="shipping_method"]';
87 87
 
88 88
     public $paymentMethodContinueCompleteXpath = '//span[@id="payment-please-wait"]';
89 89
 
90 90
     public $paymentMethodContinueButtonXpath = '//div[@id="payment-buttons-container"]/descendant::button';
91 91
 
92
-    public $placeOrderButtonXpath        = '//div[@id="review-buttons-container"]/descendant::button[@title="{{Place Order}}"]';
92
+    public $placeOrderButtonXpath = '//div[@id="review-buttons-container"]/descendant::button[@title="{{Place Order}}"]';
93 93
 
94 94
     public $orderReceivedCompleteXpath = '//h1[.="Your order has been received."]';
95 95
 
96 96
     public $shippingMethodFormXpath      = '//form[@id="co-shipping-method-form"]';
97 97
 
98 98
     public $passwordInputXpath           = '//input[@id="billing:customer_password"]';
99
-    public $confirmPasswordInputXpath           = '//input[@id="billing:confirm_password"]';
99
+    public $confirmPasswordInputXpath = '//input[@id="billing:confirm_password"]';
100 100
 
101 101
     /**
102 102
      * This is a hard one.  Each of the summary checkout products will be iterated over until they cannot be found. Having
@@ -113,10 +113,10 @@  discard block
 block discarded – undo
113 113
     public $cartSummaryCheckoutProductLoopQtyXpath = '(//table[@id="checkout-review-table"]/tbody/descendant::td[@data-rwd-label="{{Qty}}"])[%d]';
114 114
     public $cartSummaryCheckoutProductLoopSubtotalXpath = '(//table[@id="checkout-review-table"]/tbody/descendant::td[@data-rwd-label="{{Subtotal}}"])[%d]';
115 115
 
116
-    public $cartSummaryCheckoutSubTotal              = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Subtotal}} "]/../td[2]';
117
-    public $cartSummaryCheckoutTax              = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Tax}} "]/../td[2]';
118
-    public $cartSummaryCheckoutGrandTotal              = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Grand Total}} "]/../td[2]';
119
-    public $cartSummaryCheckoutShippingTotal              = '//table[@id="checkout-review-table"]/tfoot/tr/td[contains(concat(" ",normalize-space(.)," "), " {{Shipping & Handling}} (")]/../td[2]';
116
+    public $cartSummaryCheckoutSubTotal = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Subtotal}} "]/../td[2]';
117
+    public $cartSummaryCheckoutTax = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Tax}} "]/../td[2]';
118
+    public $cartSummaryCheckoutGrandTotal = '//table[@id="checkout-review-table"]/tfoot/tr/td[concat(" ",normalize-space(.)," ") = " {{Grand Total}} "]/../td[2]';
119
+    public $cartSummaryCheckoutShippingTotal = '//table[@id="checkout-review-table"]/tfoot/tr/td[contains(concat(" ",normalize-space(.)," "), " {{Shipping & Handling}} (")]/../td[2]';
120 120
 
121 121
     public $orderNumberExtractorXpath = '//p[contains(., "Your order # is:")]';
122 122
 
Please login to merge, or discard this patch.