Completed
Push — master ( e639bd...95f92c )
by
unknown
43s queued 10s
created
Client/CompanyUserInvitationPageToCompanyUserInvitationClientBridge.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,6 @@
 block discarded – undo
37 37
 
38 38
     /**
39 39
      * @param \Generated\Shared\Transfer\CompanyUserInvitationImportRequestTransfer $companyUserInvitationImportRequestTransfer
40
-
41 40
      * @return \Generated\Shared\Transfer\CompanyUserInvitationImportResponseTransfer
42 41
      */
43 42
     public function importCompanyUserInvitations(
Please login to merge, or discard this patch.
SprykerShopTest/Yves/ShopApplication/_support/ShopApplicationYvesTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 {
29 29
     use _generated\ShopApplicationYvesTesterActions;
30 30
 
31
-   /**
32
-    * Define custom actions here
33
-    */
31
+    /**
32
+     * Define custom actions here
33
+     */
34 34
 }
Please login to merge, or discard this patch.
Dependency/Plugin/ShoppingListFormDataProviderMapperPluginInterface.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 
8 8
 namespace SprykerShop\Yves\ShoppingListPageExtension\Dependency\Plugin;
9 9
 
10
- use Generated\Shared\Transfer\ShoppingListTransfer;
10
+    use Generated\Shared\Transfer\ShoppingListTransfer;
11 11
 
12 12
 interface ShoppingListFormDataProviderMapperPluginInterface
13 13
 {
Please login to merge, or discard this patch.
src/SprykerShop/Yves/ProductBarcodeWidget/Widget/ProductBarcodeWidget.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -16,10 +16,10 @@
 block discarded – undo
16 16
  */
17 17
 class ProductBarcodeWidget extends AbstractWidget
18 18
 {
19
-     /**
20
-      * @param \Generated\Shared\Transfer\ProductViewTransfer $productViewTransfer
21
-      * @param string|null $barcodeGeneratorPlugin
22
-      */
19
+        /**
20
+         * @param \Generated\Shared\Transfer\ProductViewTransfer $productViewTransfer
21
+         * @param string|null $barcodeGeneratorPlugin
22
+         */
23 23
     public function __construct(ProductViewTransfer $productViewTransfer, ?string $barcodeGeneratorPlugin = null)
24 24
     {
25 25
         $this->addParameter('barcodeResponseTransfer', $this->getBarcodeResponseTransfer($productViewTransfer, $barcodeGeneratorPlugin));
Please login to merge, or discard this patch.
ProductBarcodeWidget/Plugin/ShoppingList/ProductBarcodeWidgetPlugin.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -19,12 +19,12 @@
 block discarded – undo
19 19
  */
20 20
 class ProductBarcodeWidgetPlugin extends AbstractWidgetPlugin implements ProductBarcodeWidgetPluginInterface
21 21
 {
22
-     /**
23
-      * @param \Generated\Shared\Transfer\ProductViewTransfer $productViewTransfer
24
-      * @param string|null $barcodeGeneratorPlugin
25
-      *
26
-      * @return void
27
-      */
22
+        /**
23
+         * @param \Generated\Shared\Transfer\ProductViewTransfer $productViewTransfer
24
+         * @param string|null $barcodeGeneratorPlugin
25
+         *
26
+         * @return void
27
+         */
28 28
     public function initialize(ProductViewTransfer $productViewTransfer, ?string $barcodeGeneratorPlugin = null): void
29 29
     {
30 30
         $widget = new ProductBarcodeWidget($productViewTransfer, $barcodeGeneratorPlugin);
Please login to merge, or discard this patch.
SprykerShop/Yves/ProductReviewWidget/Widget/ProductRatingFilterWidget.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,8 +52,7 @@
 block discarded – undo
52 52
     protected function getFilterValue(RangeSearchResultTransfer $rangeSearchResultTransfer, Request $request): ?float
53 53
     {
54 54
         return $request->query->has($rangeSearchResultTransfer->getConfig()->getParameterName()) ?
55
-            $rangeSearchResultTransfer->getActiveMin() :
56
-            null;
55
+            $rangeSearchResultTransfer->getActiveMin() : null;
57 56
     }
58 57
 
59 58
     /**
Please login to merge, or discard this patch.
Yves/QuickOrderPage/Plugin/Provider/QuickOrderPageControllerProvider.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -96,8 +96,8 @@
 block discarded – undo
96 96
     protected function addQuickOrderDownloadTemplateRoute()
97 97
     {
98 98
         $this->createController('/{quickOrder}/download-template', static::ROUTE_QUICK_ORDER_DOWNLOAD_TEMPLATE, 'QuickOrderPage', 'QuickOrder', 'downloadTemplate')
99
-             ->assert('quickOrder', $this->getAllowedLocalesPattern() . 'quick-order|quick-order')
100
-             ->value('quickOrder', 'quick-order');
99
+                ->assert('quickOrder', $this->getAllowedLocalesPattern() . 'quick-order|quick-order')
100
+                ->value('quickOrder', 'quick-order');
101 101
 
102 102
         return $this;
103 103
     }
Please login to merge, or discard this patch.
src/SprykerShop/Yves/DiscountWidget/Handler/VoucherHandler.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,9 +53,9 @@
 block discarded – undo
53 53
         $quoteTransfer = $this->quoteClient->getQuote();
54 54
 
55 55
         if ($this->quoteClient->isQuoteLocked($quoteTransfer)) {
56
-             $this->flashMessenger->addErrorMessage(static::GLOSSARY_KEY_LOCKED_CART_CHANGE_DENIED);
56
+                $this->flashMessenger->addErrorMessage(static::GLOSSARY_KEY_LOCKED_CART_CHANGE_DENIED);
57 57
 
58
-             return;
58
+                return;
59 59
         }
60 60
 
61 61
         $voucherDiscount = new DiscountTransfer();
Please login to merge, or discard this patch.
Yves/ContentBannerWidget/_support/ContentBannerWidgetYvesTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 {
29 29
     use _generated\ContentBannerWidgetYvesTesterActions;
30 30
 
31
-   /**
32
-    * Define custom actions here
33
-    */
31
+    /**
32
+     * Define custom actions here
33
+     */
34 34
 }
Please login to merge, or discard this patch.