Passed
Push — master ( 7a7cfe...9ace4b )
by Mark
35:26
created
Storage/tests/SprykerTest/Shared/Storage/_support/StorageSharedTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,8 +23,8 @@
 block discarded – undo
23 23
 
24 24
     use _generated\StorageSharedTesterActions;
25 25
 
26
-   /**
27
-    * Define custom actions here
28
-    */
26
+    /**
27
+     * Define custom actions here
28
+     */
29 29
 
30 30
 }
Please login to merge, or discard this patch.
Storage/tests/SprykerTest/Zed/Storage/Business/_support/BusinessTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,8 +23,8 @@
 block discarded – undo
23 23
 
24 24
     use _generated\BusinessTesterActions;
25 25
 
26
-   /**
27
-    * Define custom actions here
28
-    */
26
+    /**
27
+     * Define custom actions here
28
+     */
29 29
 
30 30
 }
Please login to merge, or discard this patch.
Storage/tests/SprykerTest/Zed/Storage/_support/StorageBusinessTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,8 +23,8 @@
 block discarded – undo
23 23
 
24 24
     use _generated\StorageBusinessTesterActions;
25 25
 
26
-   /**
27
-    * Define custom actions here
28
-    */
26
+    /**
27
+     * Define custom actions here
28
+     */
29 29
 
30 30
 }
Please login to merge, or discard this patch.
Zed/CustomerUserConnectorGui/CustomerUserConnectorGuiDependencyProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      */
29 29
     protected function addCustomerQueryContainer(Container $container)
30 30
     {
31
-        $container[static::QUERY_CONTAINER_CUSTOMER] = function (Container $container) {
31
+        $container[static::QUERY_CONTAINER_CUSTOMER] = function(Container $container) {
32 32
             return new CustomerUserConnectorGuiToCustomerQueryContainerBridge($container->getLocator()->customer()->queryContainer());
33 33
         };
34 34
 
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      */
43 43
     protected function addUserQueryContainer(Container $container)
44 44
     {
45
-        $container[static::QUERY_CONTAINER_USER] = function (Container $container) {
45
+        $container[static::QUERY_CONTAINER_USER] = function(Container $container) {
46 46
             return new CustomerUserConnectorGuiToUserQueryContainerBridge($container->getLocator()->user()->queryContainer());
47 47
         };
48 48
 
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      */
57 57
     protected function addCustomerUserConnectorFacade(Container $container)
58 58
     {
59
-        $container[static::FACADE_CUSTOMER_USER_CONNECTOR] = function (Container $container) {
59
+        $container[static::FACADE_CUSTOMER_USER_CONNECTOR] = function(Container $container) {
60 60
             return new CustomerUserConnectorGuiToCustomerUserConnectorBridge($container->getLocator()->customerUserConnector()->facade());
61 61
         };
62 62
 
Please login to merge, or discard this patch.
CustomerUserConnectorGui/Communication/Form/CustomerUserConnectorForm.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -102,14 +102,14 @@
 block discarded – undo
102 102
         $builder
103 103
             ->get($fieldName)
104 104
             ->addModelTransformer(new CallbackTransformer(
105
-                function ($idsCustomerAsArray) {
105
+                function($idsCustomerAsArray) {
106 106
                     if (!count($idsCustomerAsArray)) {
107 107
                         return [];
108 108
                     }
109 109
 
110 110
                     return implode(',', $idsCustomerAsArray);
111 111
                 },
112
-                function ($idsCustomerAsCsv) {
112
+                function($idsCustomerAsCsv) {
113 113
                     if (empty($idsCustomerAsCsv)) {
114 114
                         return [];
115 115
                     }
Please login to merge, or discard this patch.
src/Spryker/Client/Availability/AvailabilityDependencyProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,11 +24,11 @@
 block discarded – undo
24 24
      */
25 25
     public function provideServiceLayerDependencies(Container $container)
26 26
     {
27
-        $container[self::KV_STORAGE] = function (Container $container) {
27
+        $container[self::KV_STORAGE] = function(Container $container) {
28 28
             return new AvailabilityToStorageBridge($container->getLocator()->storage()->client());
29 29
         };
30 30
 
31
-        $container[self::CLIENT_LOCALE] = function (Container $container) {
31
+        $container[self::CLIENT_LOCALE] = function(Container $container) {
32 32
             return new AvailabilityToLocaleBridge($container->getLocator()->locale()->client());
33 33
         };
34 34
 
Please login to merge, or discard this patch.
src/Spryker/Zed/Availability/AvailabilityDependencyProvider.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -32,19 +32,19 @@  discard block
 block discarded – undo
32 32
      */
33 33
     public function provideBusinessLayerDependencies(Container $container)
34 34
     {
35
-        $container[self::FACADE_OMS] = function (Container $container) {
35
+        $container[self::FACADE_OMS] = function(Container $container) {
36 36
             return new AvailabilityToOmsBridge($container->getLocator()->oms()->facade());
37 37
         };
38 38
 
39
-        $container[self::FACADE_STOCK] = function (Container $container) {
39
+        $container[self::FACADE_STOCK] = function(Container $container) {
40 40
             return new AvailabilityToStockBridge($container->getLocator()->stock()->facade());
41 41
         };
42 42
 
43
-        $container[self::FACADE_TOUCH] = function (Container $container) {
43
+        $container[self::FACADE_TOUCH] = function(Container $container) {
44 44
             return new AvailabilityToTouchBridge($container->getLocator()->touch()->facade());
45 45
         };
46 46
 
47
-        $container[self::FACADE_PRODDUCT] = function (Container $container) {
47
+        $container[self::FACADE_PRODDUCT] = function(Container $container) {
48 48
             return new AvailabilityToProductBridge($container->getLocator()->product()->facade());
49 49
         };
50 50
 
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      */
69 69
     public function providePersistenceLayerDependencies(Container $container)
70 70
     {
71
-        $container[self::QUERY_CONTAINER_PRODUCT] = function (Container $container) {
71
+        $container[self::QUERY_CONTAINER_PRODUCT] = function(Container $container) {
72 72
             return new PersistenceAvailabilityToProductBridge(
73 73
                 $container->getLocator()->product()->queryContainer()
74 74
             );
Please login to merge, or discard this patch.
tests/SprykerTest/Client/Availability/_support/AvailabilityClientTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,8 +23,8 @@
 block discarded – undo
23 23
 
24 24
     use _generated\AvailabilityClientTesterActions;
25 25
 
26
-   /**
27
-    * Define custom actions here
28
-    */
26
+    /**
27
+     * Define custom actions here
28
+     */
29 29
 
30 30
 }
Please login to merge, or discard this patch.
tests/SprykerTest/Zed/Availability/Business/AvailabilityFacadeTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
     {
58 58
         $availabilityFacade = $this->createAvailabilityFacade();
59 59
 
60
-        $this->createProductWithStock(self::ABSTRACT_SKU, self::CONCRETE_SKU,  ['quantity' => 0]);
60
+        $this->createProductWithStock(self::ABSTRACT_SKU, self::CONCRETE_SKU, ['quantity' => 0]);
61 61
 
62 62
         $isProductSellable = $availabilityFacade->isProductSellable(self::CONCRETE_SKU, 1);
63 63
 
Please login to merge, or discard this patch.