Completed
Push — master ( 6279d8...15f84e )
by mark
30s queued 11s
created
Zed/ProductManagement/Dependency/Facade/ProductManagementToMoneyBridge.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
      */
64 64
     public function fromInteger($amount, $isoCode = null)
65 65
     {
66
-         return $this->moneyFacade->fromInteger($amount, $isoCode);
66
+            return $this->moneyFacade->fromInteger($amount, $isoCode);
67 67
     }
68 68
 
69 69
 }
Please login to merge, or discard this patch.
Messenger/Communication/Plugin/ServiceProvider/MessengerServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      */
25 25
     public function register(Application $app)
26 26
     {
27
-        $app['messenger'] = function () {
27
+        $app['messenger'] = function() {
28 28
             return $this->getFacade();
29 29
         };
30 30
     }
Please login to merge, or discard this patch.
Zed/ZedRequest/Communication/Plugin/GatewayServiceProviderPlugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
      */
53 53
     public function boot(Application $app)
54 54
     {
55
-        $app->before(function (Request $request) {
55
+        $app->before(function(Request $request) {
56 56
             TransferServer::getInstance()->setRequest($request);
57 57
         });
58 58
     }
Please login to merge, or discard this patch.
src/Spryker/Zed/ProductOption/Communication/Form/ProductOptionGroupForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@
 block discarded – undo
150 150
             'prototype' => true,
151 151
             'constraints' => [
152 152
                 new Callback([
153
-                    'callback' => function (ArrayObject $values, ExecutionContextInterface $context) {
153
+                    'callback' => function(ArrayObject $values, ExecutionContextInterface $context) {
154 154
                         if (count($values) === 0) {
155 155
                             $context->buildViolation('No option values added.')
156 156
                                 ->addViolation();
Please login to merge, or discard this patch.
Spryker/Zed/Development/Business/Composer/Updater/BranchAliasUpdater.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,9 +32,9 @@
 block discarded – undo
32 32
         $alias = Config::get(DevelopmentConstants::COMPOSER_BRANCH_ALIAS);
33 33
 
34 34
         $composerJson[static::KEY_EXTRA] = [
35
-          static::KEY_BRANCH_ALIAS => [
36
-              static::KEY_MASTER_BRANCH => $alias,
37
-          ],
35
+            static::KEY_BRANCH_ALIAS => [
36
+                static::KEY_MASTER_BRANCH => $alias,
37
+            ],
38 38
         ];
39 39
 
40 40
         return $composerJson;
Please login to merge, or discard this patch.
Bundles/Ratepay/config/config.dist.php 1 patch
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -17,35 +17,35 @@
 block discarded – undo
17 17
 $config[RatepayConstants::SYSTEM_ID] = 'Spryker ' . $config[ApplicationConstants::HOST_YVES];
18 18
 
19 19
 $config[KernelConstants::DEPENDENCY_INJECTOR_YVES] = [
20
-  'Checkout' => [
21
-      'Ratepay',
22
-  ],
20
+    'Checkout' => [
21
+        'Ratepay',
22
+    ],
23 23
 ];
24 24
 
25 25
 $config[KernelConstants::DEPENDENCY_INJECTOR_ZED] = [
26
-  'Payment' => [
27
-      'Ratepay',
28
-  ],
29
-  'Oms' => [
30
-      'Ratepay',
31
-  ],
26
+    'Payment' => [
27
+        'Ratepay',
28
+    ],
29
+    'Oms' => [
30
+        'Ratepay',
31
+    ],
32 32
 ];
33 33
 
34 34
 $config[OmsConstants::PROCESS_LOCATION] = [
35
-  OmsConfig::DEFAULT_PROCESS_LOCATION,
36
-  $config[KernelConstants::SPRYKER_ROOT] . '/Ratepay/config/Zed/Oms',
35
+    OmsConfig::DEFAULT_PROCESS_LOCATION,
36
+    $config[KernelConstants::SPRYKER_ROOT] . '/Ratepay/config/Zed/Oms',
37 37
 ];
38 38
 
39 39
 $config[OmsConstants::ACTIVE_PROCESSES] = [
40
-  'RatepayElv01',
41
-  'RatepayInstallment01',
42
-  'RatepayInvoice01',
43
-  'RatepayPrepayment01',
40
+    'RatepayElv01',
41
+    'RatepayInstallment01',
42
+    'RatepayInvoice01',
43
+    'RatepayPrepayment01',
44 44
 ];
45 45
 
46 46
 $config[SalesConstants::PAYMENT_METHOD_STATEMACHINE_MAPPING] = [
47
-  RatepayConstants::PAYMENT_METHOD_ELV => 'RatepayElv01',
48
-  RatepayConstants::PAYMENT_METHOD_INSTALLMENT => 'RatepayInstallment01',
49
-  RatepayConstants::PAYMENT_METHOD_INVOICE => 'RatepayInvoice01',
50
-  RatepayConstants::PAYMENT_METHOD_PREPAYMENT => 'RatepayPrepayment01',
47
+    RatepayConstants::PAYMENT_METHOD_ELV => 'RatepayElv01',
48
+    RatepayConstants::PAYMENT_METHOD_INSTALLMENT => 'RatepayInstallment01',
49
+    RatepayConstants::PAYMENT_METHOD_INVOICE => 'RatepayInvoice01',
50
+    RatepayConstants::PAYMENT_METHOD_PREPAYMENT => 'RatepayPrepayment01',
51 51
 ];
Please login to merge, or discard this patch.
Collector/src/Spryker/Client/Collector/CollectorDependencyProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      */
35 35
     protected function addStorageClient(Container $container)
36 36
     {
37
-        $container[static::CLIENT_STORAGE] = function (Container $container) {
37
+        $container[static::CLIENT_STORAGE] = function(Container $container) {
38 38
             return $container->getLocator()->storage()->client();
39 39
         };
40 40
 
Please login to merge, or discard this patch.
src/Spryker/Client/Session/ServiceProvider/SessionClientServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
     public function register(Application $app)
26 26
     {
27 27
         $containerGlobals = new ContainerGlobals();
28
-        $containerGlobals[static::CLIENT_SESSION] = function () {
28
+        $containerGlobals[static::CLIENT_SESSION] = function() {
29 29
             $container = new Container();
30 30
 
31 31
             return $container->getLocator()->session()->client();
Please login to merge, or discard this patch.
Bundles/Ratepay/src/Spryker/Client/Ratepay/RatepayDependencyProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      */
35 35
     protected function addZedRequestClient(Container $container)
36 36
     {
37
-        $container[static::CLIENT_ZED_REQUEST] = function (Container $container) {
37
+        $container[static::CLIENT_ZED_REQUEST] = function(Container $container) {
38 38
             return $container->getLocator()->zedRequest()->client();
39 39
         };
40 40
 
Please login to merge, or discard this patch.