Failed Conditions
Push — master ( 494e02...0ec8a9 )
by mark
68:47 queued 24:21
created
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/ProductReview/Business/Model/ProductReviewStatusUpdater.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
     {
47 47
         $this->assertProductReviewTransfer($productReviewTransfer);
48 48
 
49
-        return $this->handleDatabaseTransaction(function () use ($productReviewTransfer) {
49
+        return $this->handleDatabaseTransaction(function() use ($productReviewTransfer) {
50 50
             return $this->executeUpdateProductReviewStatusTransaction($productReviewTransfer);
51 51
         });
52 52
     }
Please login to merge, or discard this patch.
src/Spryker/Zed/ProductReview/Business/Model/ProductReviewCreator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     {
42 42
         $this->assertRatingRange($productReviewTransfer);
43 43
 
44
-        return $this->handleDatabaseTransaction(function () use ($productReviewTransfer) {
44
+        return $this->handleDatabaseTransaction(function() use ($productReviewTransfer) {
45 45
             return $this->executeCreateProductReviewTransaction($productReviewTransfer);
46 46
         });
47 47
     }
Please login to merge, or discard this patch.
src/Spryker/Zed/ProductReview/Business/Model/ProductReviewDeleter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
      */
44 44
     public function deleteProductReview(ProductReviewTransfer $productReviewTransfer)
45 45
     {
46
-        $this->handleDatabaseTransaction(function () use ($productReviewTransfer) {
46
+        $this->handleDatabaseTransaction(function() use ($productReviewTransfer) {
47 47
             $this->executeDeleteProductReviewTransaction($productReviewTransfer);
48 48
         });
49 49
     }
Please login to merge, or discard this patch.
src/Spryker/Yves/Storage/Plugin/Provider/StorageCacheServiceProvider.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->finish(function (Request $request) use ($app) {
29
+        $app->finish(function(Request $request) use ($app) {
30 30
             if (isset($app[StorageConstants::STORAGE_CACHE_STRATEGY])) {
31 31
                 $this->getClient()->persistCacheForRequest($request, $app[StorageConstants::STORAGE_CACHE_STRATEGY]);
32 32
             }
Please login to merge, or discard this patch.
Spryker/Yves/Storage/Plugin/Provider/StorageRequestCacheServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      */
28 28
     public function register(Application $app)
29 29
     {
30
-        $app->finish(function (Request $request) {
30
+        $app->finish(function(Request $request) {
31 31
             $this->getClient()->persistCacheForRequest($request);
32 32
         });
33 33
     }
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.
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.
Bundles/Acl/src/Spryker/Zed/Acl/Persistence/AclQueryContainer.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -167,7 +167,7 @@
 block discarded – undo
167 167
         $query = $this->getFactory()->createUserHasRoleQuery();
168 168
 
169 169
         $query->filterByFkAclGroup($idGroup)
170
-              ->filterByFkUser($idUser);
170
+                ->filterByFkUser($idUser);
171 171
 
172 172
         return $query;
173 173
     }
Please login to merge, or discard this patch.