Completed
Push — master ( c209a2...8b3986 )
by
unknown
25s queued 10s
created
Spryker/Zed/DummyPayment/Dependency/Injector/PaymentDependencyInjector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      */
39 39
     protected function injectPaymentPlugins(Container $container)
40 40
     {
41
-        $container->extend(PaymentDependencyProvider::CHECKOUT_PLUGINS, function (CheckoutPluginCollection $pluginCollection) {
41
+        $container->extend(PaymentDependencyProvider::CHECKOUT_PLUGINS, function(CheckoutPluginCollection $pluginCollection) {
42 42
             $pluginCollection->add(new DummyPaymentPreCheckPlugin(), DummyPaymentConfig::PROVIDER_NAME, PaymentDependencyProvider::CHECKOUT_PRE_CHECK_PLUGINS);
43 43
             $pluginCollection->add(new DummyPaymentSaveOrderPlugin(), DummyPaymentConfig::PROVIDER_NAME, PaymentDependencyProvider::CHECKOUT_ORDER_SAVER_PLUGINS);
44 44
             $pluginCollection->add(new DummyPaymentPostCheckPlugin(), DummyPaymentConfig::PROVIDER_NAME, PaymentDependencyProvider::CHECKOUT_POST_SAVE_PLUGINS);
Please login to merge, or discard this patch.
Spryker/Zed/OmsDiscountConnector/OmsDiscountConnectorDependencyProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
      */
24 24
     public function provideCommunicationLayerDependencies(Container $container)
25 25
     {
26
-        $container[self::FACADE_DISCOUNT] = function (Container $container) {
26
+        $container[self::FACADE_DISCOUNT] = function(Container $container) {
27 27
             return new OmsDiscountConnectorToDiscountBridge($container->getLocator()->discount()->facade());
28 28
         };
29 29
 
Please login to merge, or discard this patch.
Bundles/Kernel/config/stores.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 $stores = [];
4 4
 
5 5
 $stores['DE'] = [
6
-    'contexts' => [ // different contexts
6
+    'contexts' => [// different contexts
7 7
         // shared settings for all contexts
8 8
         '*' => [
9 9
             'timezone' => 'Europe/Berlin',
@@ -25,8 +25,8 @@  discard block
 block discarded – undo
25 25
     'locales' => [
26 26
         'de' => 'de_DE',
27 27
         'en' => 'en_US',
28
-    ],   // first entry is default
29
-    'countries' => ['DE'],   // first entry is default
28
+    ], // first entry is default
29
+    'countries' => ['DE'], // first entry is default
30 30
     'currencyIsoCode' => 'EUR', // internal and shop
31 31
 ];
32 32
 
Please login to merge, or discard this patch.
src/Spryker/Zed/ProductImage/ProductImageDependencyProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
      */
24 24
     public function provideBusinessLayerDependencies(Container $container)
25 25
     {
26
-        $container[static::FACADE_LOCALE] = function (Container $container) {
26
+        $container[static::FACADE_LOCALE] = function(Container $container) {
27 27
             return new ProductImageToLocaleBridge($container->getLocator()->locale()->facade());
28 28
         };
29 29
 
Please login to merge, or discard this patch.
Spryker/Zed/Log/Communication/Plugin/ServiceProvider/LogServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      */
27 27
     public function register(Application $app)
28 28
     {
29
-        $app['monolog.level'] = function () {
29
+        $app['monolog.level'] = function() {
30 30
             return Config::get(LogConstants::LOG_LEVEL, Logger::ERROR);
31 31
         };
32 32
     }
Please login to merge, or discard this patch.
src/Spryker/Zed/StateMachine/Communication/Controller/GraphController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
 
77 77
         $response = $this->getFacade()->drawProcess($stateMachineProcessTransfer, $highlightState, $format, $fontSize);
78 78
 
79
-        $callback = function () use ($response) {
79
+        $callback = function() use ($response) {
80 80
             echo $response;
81 81
         };
82 82
 
Please login to merge, or discard this patch.
src/Spryker/Zed/StateMachine/Business/StateMachine/Condition.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -200,7 +200,6 @@
 block discarded – undo
200 200
      * @param string $stateMachineName
201 201
      * @param string[] $states
202 202
      * @param \Spryker\Zed\StateMachine\Business\Process\ProcessInterface $process
203
-
204 203
      * @return \Generated\Shared\Transfer\StateMachineItemTransfer[]
205 204
      */
206 205
     protected function getItemsByStatesAndProcessName(
Please login to merge, or discard this patch.
Communication/Plugin/TaxSetProductAbstractReadPlugin.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,8 +24,8 @@
 block discarded – undo
24 24
      */
25 25
     public function read(ProductAbstractTransfer $productAbstractTransfer)
26 26
     {
27
-         return $this->getFacade()
28
-             ->mapTaxSet($productAbstractTransfer);
27
+            return $this->getFacade()
28
+                ->mapTaxSet($productAbstractTransfer);
29 29
     }
30 30
 
31 31
 }
Please login to merge, or discard this patch.
Bundles/Acl/src/Spryker/Zed/Acl/Business/Model/Rule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -272,7 +272,7 @@
 block discarded – undo
272 272
     {
273 273
         $credentials = $this->config->getCredentials();
274 274
 
275
-        $credential = array_filter($credentials, function ($username) use ($userTransfer) {
275
+        $credential = array_filter($credentials, function($username) use ($userTransfer) {
276 276
             return $username === $userTransfer->getUsername();
277 277
         }, ARRAY_FILTER_USE_KEY);
278 278
 
Please login to merge, or discard this patch.