Passed
Push — master ( e0cd82...d9403f )
by
unknown
30:43
created
Business/ProductPackagingUnitStorageFacadeTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     {
41 41
         parent::setUp();
42 42
 
43
-        $this->tester->setDependency(QueueDependencyProvider::QUEUE_ADAPTERS, function (Container $container) {
43
+        $this->tester->setDependency(QueueDependencyProvider::QUEUE_ADAPTERS, function(Container $container) {
44 44
             return [
45 45
                 $container->getLocator()->rabbitMq()->client()->createQueueAdapter(),
46 46
             ];
Please login to merge, or discard this patch.
ProductAlternative/Business/ProductAlternative/ProductAlternativeWriter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     {
68 68
         $productConcreteTransfer->requireProductAlternativeCreateRequests();
69 69
         foreach ($productConcreteTransfer->getProductAlternativeCreateRequests() as $productAlternativeCreateRequestTransfer) {
70
-            $this->getTransactionHandler()->handleTransaction(function () use ($productAlternativeCreateRequestTransfer) {
70
+            $this->getTransactionHandler()->handleTransaction(function() use ($productAlternativeCreateRequestTransfer) {
71 71
                 $this->executeCreateTransaction($productAlternativeCreateRequestTransfer);
72 72
             });
73 73
         }
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
                 ->setIsSuccessful(false);
92 92
         }
93 93
 
94
-        return $this->getTransactionHandler()->handleTransaction(function () use ($productAlternativeTransfer) {
94
+        return $this->getTransactionHandler()->handleTransaction(function() use ($productAlternativeTransfer) {
95 95
             return $this->executeDeleteTransaction($productAlternativeTransfer);
96 96
         });
97 97
     }
Please login to merge, or discard this patch.
Spryker/Zed/ProductAlternative/Persistence/ProductAlternativeRepository.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -105,10 +105,10 @@
 block discarded – undo
105 105
             ->withColumn(SpyProductAbstractLocalizedAttributesTableMap::COL_NAME, ProductAlternativeListItemTransfer::NAME)
106 106
             ->withColumn('GROUP_CONCAT(' . SpyCategoryAttributeTableMap::COL_NAME . ')', ProductAlternativeListItemTransfer::CATEGORIES)
107 107
             ->select([
108
-                 ProductAlternativeListItemTransfer::ID_PRODUCT,
109
-                 ProductAlternativeListItemTransfer::SKU,
110
-                 ProductAlternativeListItemTransfer::NAME,
111
-                 ProductAlternativeListItemTransfer::CATEGORIES,
108
+                    ProductAlternativeListItemTransfer::ID_PRODUCT,
109
+                    ProductAlternativeListItemTransfer::SKU,
110
+                    ProductAlternativeListItemTransfer::NAME,
111
+                    ProductAlternativeListItemTransfer::CATEGORIES,
112 112
             ])
113 113
             ->findOne();
114 114
 
Please login to merge, or discard this patch.
Bundles/FileManager/src/Spryker/Zed/FileManager/Business/File/FileSaver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
      */
82 82
     public function save(FileManagerDataTransfer $fileManagerDataTransfer)
83 83
     {
84
-        return $this->getTransactionHandler()->handleTransaction(function () use ($fileManagerDataTransfer) {
84
+        return $this->getTransactionHandler()->handleTransaction(function() use ($fileManagerDataTransfer) {
85 85
             return $this->executeSaveTransaction($fileManagerDataTransfer);
86 86
         });
87 87
     }
Please login to merge, or discard this patch.
src/Spryker/Zed/FileManager/Business/FileDirectory/FileDirectorySaver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
      */
55 55
     public function save(FileDirectoryTransfer $fileDirectoryTransfer)
56 56
     {
57
-        return $this->getTransactionHandler()->handleTransaction(function () use ($fileDirectoryTransfer) {
57
+        return $this->getTransactionHandler()->handleTransaction(function() use ($fileDirectoryTransfer) {
58 58
             return $this->executeSaveTransaction($fileDirectoryTransfer);
59 59
         });
60 60
     }
Please login to merge, or discard this patch.
Business/ProductListCategoryRelation/ProductListCategoryRelationWriter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     public function saveProductListCategoryRelation(
46 46
         ProductListCategoryRelationTransfer $productListCategoryRelationTransfer
47 47
     ): ProductListCategoryRelationTransfer {
48
-        return $this->getTransactionHandler()->handleTransaction(function () use ($productListCategoryRelationTransfer) {
48
+        return $this->getTransactionHandler()->handleTransaction(function() use ($productListCategoryRelationTransfer) {
49 49
             return $this->executeSaveProductListCategoryRelationTransaction($productListCategoryRelationTransfer);
50 50
         });
51 51
     }
Please login to merge, or discard this patch.
ProductListProductConcreteRelationWriter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     public function saveProductListProductConcreteRelation(
46 46
         ProductListProductConcreteRelationTransfer $productListProductConcreteRelationTransfer
47 47
     ): ProductListProductConcreteRelationTransfer {
48
-        return $this->getTransactionHandler()->handleTransaction(function () use ($productListProductConcreteRelationTransfer) {
48
+        return $this->getTransactionHandler()->handleTransaction(function() use ($productListProductConcreteRelationTransfer) {
49 49
             return $this->executeSaveProductListProductConcreteRelationTransaction($productListProductConcreteRelationTransfer);
50 50
         });
51 51
     }
Please login to merge, or discard this patch.
PropelOrm/src/Spryker/Zed/PropelOrm/Business/Builder/QueryBuilder.php 1 patch
Upper-Lower-Casing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -36,16 +36,16 @@  discard block
 block discarded – undo
36 36
     /**
37 37
      * Applies Criteria::IN filtering criteria for the column.
38 38
      *
39
-     * @param array \$${variableName}s Filter value.
39
+     * @param array \$${variablename}s Filter value.
40 40
      *
41 41
      * @return \$this The current query, for fluid interface
42 42
      */
43
-    public function filterBy${colPhpName}_In(array \$${variableName}s)
43
+    public function filterBy${colphpname}_In(array \$${variablename}s)
44 44
     {
45
-        return \$this->filterBy$colPhpName(\$${variableName}s, Criteria::IN);
45
+        return \$this->filterBy$colPhpName(\$${variablename}s, Criteria::IN);
46 46
     }
47 47
 
48
-SCRIPT;
48
+script;
49 49
         }
50 50
 
51 51
         return $script;
@@ -78,12 +78,12 @@  discard block
 block discarded – undo
78 78
      *
79 79
      * @return \$this The current query, for fluid interface
80 80
      */
81
-    public function filterBy${colPhpName}_Between(array \$$variableName)
81
+    public function filterBy${colphpname}_Between(array \$$variableName)
82 82
     {
83 83
         return \$this->filterBy$colPhpName(\$$variableName, SprykerCriteria::BETWEEN);
84 84
     }
85 85
 
86
-SCRIPT;
86
+script;
87 87
         }
88 88
 
89 89
         return $script;
@@ -111,12 +111,12 @@  discard block
 block discarded – undo
111 111
      *
112 112
      * @return \$this The current query, for fluid interface
113 113
      */
114
-    public function filterBy${colPhpName}_Like(\$$variableName)
114
+    public function filterBy${colphpname}_Like(\$$variableName)
115 115
     {
116 116
         return \$this->filterBy$colPhpName(\$$variableName, Criteria::LIKE);
117 117
     }
118 118
 
119
-SCRIPT;
119
+script;
120 120
         }
121 121
 
122 122
         return $script;
Please login to merge, or discard this patch.
src/Spryker/Zed/ShoppingList/Business/Model/ShoppingListWriter.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -234,7 +234,7 @@
 block discarded – undo
234 234
             ->setId($shoppingListTransfer->getIdShoppingList())
235 235
             ->setEvent(ShoppingListEvents::SHOPPING_LIST_UNPUBLISH)
236 236
             ->setModifiedColumns([
237
-                 $shoppingListTransfer->getCustomerReference() => ShoppingListTransfer::CUSTOMER_REFERENCE,
237
+                    $shoppingListTransfer->getCustomerReference() => ShoppingListTransfer::CUSTOMER_REFERENCE,
238 238
             ]);
239 239
         $this->eventFacade->trigger(ShoppingListEvents::SHOPPING_LIST_UNPUBLISH, $eventTransfer);
240 240
     }
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
         }
145 145
 
146 146
         return $this->getTransactionHandler()->handleTransaction(
147
-            function () use ($shoppingListTransfer) {
147
+            function() use ($shoppingListTransfer) {
148 148
                 return $this->executeRemoveShoppingListTransaction($shoppingListTransfer);
149 149
             },
150 150
         );
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
     public function saveShoppingList(ShoppingListTransfer $shoppingListTransfer): ShoppingListTransfer
173 173
     {
174 174
         return $this->getTransactionHandler()->handleTransaction(
175
-            function () use ($shoppingListTransfer) {
175
+            function() use ($shoppingListTransfer) {
176 176
                 return $this->executeSaveShoppingListTransaction($shoppingListTransfer);
177 177
             },
178 178
         );
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
      */
202 202
     protected function deleteShoppingListItems(ShoppingListTransfer $shoppingListTransfer): ShoppingListResponseTransfer
203 203
     {
204
-        $this->getTransactionHandler()->handleTransaction(function () use ($shoppingListTransfer) {
204
+        $this->getTransactionHandler()->handleTransaction(function() use ($shoppingListTransfer) {
205 205
             $this->executeDeleteShoppingListItemsTransaction($shoppingListTransfer);
206 206
         });
207 207
 
Please login to merge, or discard this patch.