Completed
Push — master ( c209a2...8b3986 )
by
unknown
25s queued 10s
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.
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.
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.
Client/ZedRequest/ServiceProvider/ZedRequestClientServiceProvider.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_ZED_REQUEST] = function () {
28
+        $containerGlobals[static::CLIENT_ZED_REQUEST] = function() {
29 29
             $container = new Container();
30 30
 
31 31
             return $container->getLocator()->zedRequest()->client();
Please login to merge, or discard this patch.
src/Spryker/Client/Storage/ServiceProvider/StorageClientServiceProvider.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_STORAGE] = function () {
28
+        $containerGlobals[static::CLIENT_STORAGE] = function() {
29 29
             $container = new Container();
30 30
 
31 31
             return $container->getLocator()->storage()->client();
Please login to merge, or discard this patch.
src/Spryker/Client/Search/ServiceProvider/SearchClientServiceProvider.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_SEARCH] = function () {
28
+        $containerGlobals[static::CLIENT_SEARCH] = function() {
29 29
             $container = new Container();
30 30
 
31 31
             return $container->getLocator()->search()->client();
Please login to merge, or discard this patch.