Passed
Push — master ( e0cd82...d9403f )
by
unknown
30:43
created
Quote/src/Spryker/Zed/Quote/Business/GuestQuote/GuestQuoteDeleter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
             $quoteCollectionTransfer = $this->findExpiredGuestQuotes();
70 70
 
71 71
             foreach ($quoteCollectionTransfer->getQuotes() as $quoteTransfer) {
72
-                $this->getTransactionHandler()->handleTransaction(function () use ($quoteTransfer) {
72
+                $this->getTransactionHandler()->handleTransaction(function() use ($quoteTransfer) {
73 73
                     $this->executeDeleteTransaction($quoteTransfer);
74 74
                 });
75 75
             }
Please login to merge, or discard this patch.
Communication/Plugin/Event/Listener/CategoryImageStorageListenerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     {
41 41
         parent::setUp();
42 42
 
43
-        $this->tester->setDependency(QueueDependencyProvider::QUEUE_ADAPTERS, function (Container $container) {
43
+        $this->tester->setDependency(QueueDependencyProvider::QUEUE_ADAPTERS, function(Container $container) {
44 44
             return [
45 45
                 $container->getLocator()->rabbitMq()->client()->createQueueAdapter(),
46 46
             ];
Please login to merge, or discard this patch.
tests/SprykerTest/Zed/CategoryImage/Business/CategoryImageFacadeTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -231,7 +231,7 @@
 block discarded – undo
231 231
      */
232 232
     protected function getIdCategoryImageSetCollection(array $categoryImageSetCollection): array
233 233
     {
234
-        return array_map(function (CategoryImageSetTransfer $categoryImageSetTransfer) {
234
+        return array_map(function(CategoryImageSetTransfer $categoryImageSetTransfer) {
235 235
             return $categoryImageSetTransfer->getIdCategoryImageSet();
236 236
         }, $categoryImageSetCollection);
237 237
     }
Please login to merge, or discard this patch.
src/Spryker/Zed/CategoryImage/Business/ImageSet/ImageSetCreator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      */
37 37
     public function createCategoryImageSetsForCategory(CategoryTransfer $categoryTransfer): ArrayObject
38 38
     {
39
-        return $this->getTransactionHandler()->handleTransaction(function () use ($categoryTransfer) {
39
+        return $this->getTransactionHandler()->handleTransaction(function() use ($categoryTransfer) {
40 40
             return $this->executeCreateCategoryImageSetsForCategoryTransaction($categoryTransfer);
41 41
         });
42 42
     }
Please login to merge, or discard this patch.
src/Spryker/Zed/CategoryImage/Business/ImageSet/ImageSetDeleter.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 deleteCategoryImageSetsByIdCategory(int $idCategory): void
45 45
     {
46
-        $this->getTransactionHandler()->handleTransaction(function () use ($idCategory) {
46
+        $this->getTransactionHandler()->handleTransaction(function() use ($idCategory) {
47 47
             $this->executeDeleteCategoryImageSetsByIdCategoryTransaction($idCategory);
48 48
         });
49 49
     }
Please login to merge, or discard this patch.
src/Spryker/Zed/CategoryImage/Business/ImageSet/ImageSetUpdater.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
     public function updateCategoryImageSetsForCategory(CategoryTransfer $categoryTransfer): void
48 48
     {
49
-        $this->getTransactionHandler()->handleTransaction(function () use ($categoryTransfer) {
49
+        $this->getTransactionHandler()->handleTransaction(function() use ($categoryTransfer) {
50 50
             $this->executeUpdateCategoryImageSetsForCategoryTransaction($categoryTransfer);
51 51
         });
52 52
     }
Please login to merge, or discard this patch.
src/Spryker/Zed/SalesReclamation/Business/Reclamation/ReclamationReader.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,6 @@
 block discarded – undo
43 43
      * @param \Generated\Shared\Transfer\ReclamationTransfer $reclamationTransfer
44 44
      *
45 45
      * @throws \Spryker\Zed\SalesReclamation\Business\Exception\ReclamationNotFoundException
46
-
47 46
      * @return \Generated\Shared\Transfer\ReclamationTransfer
48 47
      */
49 48
     public function getReclamationById(ReclamationTransfer $reclamationTransfer): ReclamationTransfer
Please login to merge, or discard this patch.
SprykerTest/Zed/Application/_support/ApplicationCommunicationTester.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
         $application = new Application();
47 47
         $application->register(new SslServiceProvider());
48 48
 
49
-        $application['controllers']->get('/foo', function () use ($controllerResponse) {
49
+        $application['controllers']->get('/foo', function() use ($controllerResponse) {
50 50
             return $controllerResponse;
51 51
         });
52 52
 
Please login to merge, or discard this patch.
Application/src/Spryker/Zed/Application/Communication/ZedBootstrap.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      */
59 59
     public function boot()
60 60
     {
61
-        $this->application['debug'] = function () {
61
+        $this->application['debug'] = function() {
62 62
             return Config::get(ApplicationConstants::ENABLE_APPLICATION_DEBUG, false);
63 63
         };
64 64
 
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
     protected function optimizeApp()
233 233
     {
234 234
         $application = $this->application;
235
-        $application['resolver'] = function () use ($application) {
235
+        $application['resolver'] = function() use ($application) {
236 236
             return new ZedFragmentControllerResolver($application);
237 237
         };
238 238
     }
Please login to merge, or discard this patch.