Completed
Push — master ( c209a2...8b3986 )
by
unknown
25s queued 10s
created
Bundles/Money/src/Spryker/Zed/Money/MoneyDependencyProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      */
62 62
     protected function addStore(Container $container)
63 63
     {
64
-        $container[static::STORE] = function () {
64
+        $container[static::STORE] = function() {
65 65
             return $this->getStore();
66 66
         };
67 67
 
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
      */
84 84
     protected function addCurrencyFacade(Container $container)
85 85
     {
86
-        $container[static::FACADE_CURRENCY] = function (Container $container) {
86
+        $container[static::FACADE_CURRENCY] = function(Container $container) {
87 87
             return new MoneyToCurrencyBridge($container->getLocator()->currency()->facade());
88 88
         };
89 89
 
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
      */
98 98
     protected function addMoneyParser(Container $container)
99 99
     {
100
-        $container[static::MONEY_PARSER] = function () {
100
+        $container[static::MONEY_PARSER] = function() {
101 101
             $moneyToParserBridge = new MoneyToParserBridge($this->getIntlMoneyParser());
102 102
 
103 103
             return $moneyToParserBridge;
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
      */
149 149
     protected function addStoreFacade(Container $container)
150 150
     {
151
-        $container[static::FACADE_STORE] = function (Container $container) {
151
+        $container[static::FACADE_STORE] = function(Container $container) {
152 152
             return new MoneyToStoreBridge($container->getLocator()->store()->facade());
153 153
         };
154 154
 
Please login to merge, or discard this patch.
Shipment/tests/SprykerTest/Zed/Shipment/Business/ShipmentFacadeTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -139,7 +139,7 @@
 block discarded – undo
139 139
             ->expects($this->any())
140 140
             ->method('getByIdCurrency')
141 141
             ->willReturnCallback(
142
-                function ($idCurrency) {
142
+                function($idCurrency) {
143 143
                     return (new CurrencyTransfer())->setIdCurrency($idCurrency);
144 144
                 }
145 145
             );
Please login to merge, or discard this patch.
src/Spryker/Service/Synchronization/SynchronizationDependencyProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      */
35 35
     protected function addSynchronizationSearchKeyPlugins(Container $container)
36 36
     {
37
-        $container[self::SYNCHRONIZATION_SEARCH_KEY_GENERATOR_PLUGINS] = function (Container $container) {
37
+        $container[self::SYNCHRONIZATION_SEARCH_KEY_GENERATOR_PLUGINS] = function(Container $container) {
38 38
             return $this->getSearchKeyGeneratorPlugins($container);
39 39
         };
40 40
 
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      */
49 49
     protected function addSynchronizationStorageKeyPlugins(Container $container)
50 50
     {
51
-        $container[self::SYNCHRONIZATION_STORAGE_KEY_GENERATOR_PLUGINS] = function (Container $container) {
51
+        $container[self::SYNCHRONIZATION_STORAGE_KEY_GENERATOR_PLUGINS] = function(Container $container) {
52 52
             return $this->getStorageKeyGeneratorPlugins($container);
53 53
         };
54 54
 
Please login to merge, or discard this patch.
src/Spryker/Zed/Development/Business/Composer/ComposerJsonUpdater.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -169,7 +169,7 @@
 block discarded – undo
169 169
             'config',
170 170
         ];
171 171
 
172
-        $callable = function ($a, $b) use ($map) {
172
+        $callable = function($a, $b) use ($map) {
173 173
             $keyA = in_array($a, $map) ? array_search($a, $map) : 999;
174 174
             $keyB = in_array($b, $map) ? array_search($b, $map) : 999;
175 175
 
Please login to merge, or discard this patch.
Business/Model/Elasticsearch/Definition/JsonIndexDefinitionLoaderTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -366,7 +366,7 @@
 block discarded – undo
366 366
 
367 367
         $utilEncodingMock
368 368
             ->method('decodeJson')
369
-            ->willReturnCallback(function ($json, $assoc) {
369
+            ->willReturnCallback(function($json, $assoc) {
370 370
                 return json_decode($json, $assoc);
371 371
             });
372 372
 
Please login to merge, or discard this patch.
Business/Model/Elasticsearch/Definition/JsonIndexDefinitionLoader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -170,7 +170,7 @@
 block discarded – undo
170 170
      */
171 171
     protected function getStorePrefixes(array $stores)
172 172
     {
173
-        array_walk($stores, function (&$store) {
173
+        array_walk($stores, function(&$store) {
174 174
             $store = mb_strtolower($store) . '_';
175 175
         });
176 176
 
Please login to merge, or discard this patch.
SprykerTest/Service/UtilDateTime/_support/UtilDateTimeServiceTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 {
23 23
     use _generated\UtilDateTimeServiceTesterActions;
24 24
 
25
-   /**
26
-    * Define custom actions here
27
-    */
25
+    /**
26
+     * Define custom actions here
27
+     */
28 28
 }
Please login to merge, or discard this patch.
tests/SprykerTest/Zed/Application/_support/ApplicationBusinessTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 {
23 23
     use _generated\ApplicationBusinessTesterActions;
24 24
 
25
-   /**
26
-    * Define custom actions here
27
-    */
25
+    /**
26
+     * Define custom actions here
27
+     */
28 28
 }
Please login to merge, or discard this patch.
tests/SprykerTest/Shared/Application/_support/ApplicationSharedTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 {
23 23
     use _generated\ApplicationSharedTesterActions;
24 24
 
25
-   /**
26
-    * Define custom actions here
27
-    */
25
+    /**
26
+     * Define custom actions here
27
+     */
28 28
 }
Please login to merge, or discard this patch.