Passed
Push — master ( e0cd82...d9403f )
by
unknown
30:43
created
EventDispatcher/Plugin/Application/EventDispatcherApplicationPluginTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
         //Arrange
58 58
         $container = $this->createContainer();
59 59
         $eventDispatcherApplicationPlugin = $this->createEventDispatcherApplicationPlugin();
60
-        $container->set(static::SERVICE_DISPATCHER, function (ContainerInterface $container) {
60
+        $container->set(static::SERVICE_DISPATCHER, function(ContainerInterface $container) {
61 61
             return new SymfonyEventDispatcher();
62 62
         });
63 63
 
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
         //Arrange
78 78
         $container = $this->createContainer();
79 79
         $eventDispatcherApplicationPlugin = $this->createEventDispatcherApplicationPlugin();
80
-        $container->set(static::SERVICE_DISPATCHER, function (ContainerInterface $container) {
80
+        $container->set(static::SERVICE_DISPATCHER, function(ContainerInterface $container) {
81 81
             $eventDispatcher = new SymfonyEventDispatcher();
82 82
 
83 83
             $eventDispatcher->addSubscriber($this->createDummyEventSubscriber());
Please login to merge, or discard this patch.
UtilDateTime/ServiceProvider/DateTimeFormatterServiceProviderTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
     protected function getApplicationMock(): Application
48 48
     {
49 49
         $application = new Application();
50
-        $application['twig'] = function () {
50
+        $application['twig'] = function() {
51 51
             return new Environment(new FilesystemLoader());
52 52
         };
53 53
 
Please login to merge, or discard this patch.
Zed/MerchantProfile/Business/MerchantProfile/MerchantProfileWriter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
      */
77 77
     public function create(MerchantProfileTransfer $merchantProfileTransfer): MerchantProfileTransfer
78 78
     {
79
-        $merchantProfileTransfer = $this->getTransactionHandler()->handleTransaction(function () use ($merchantProfileTransfer) {
79
+        $merchantProfileTransfer = $this->getTransactionHandler()->handleTransaction(function() use ($merchantProfileTransfer) {
80 80
             return $this->executeCreateTransaction($merchantProfileTransfer);
81 81
         });
82 82
 
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
      */
93 93
     public function update(MerchantProfileTransfer $merchantProfileTransfer): MerchantProfileTransfer
94 94
     {
95
-        $merchantProfileTransfer = $this->getTransactionHandler()->handleTransaction(function () use ($merchantProfileTransfer) {
95
+        $merchantProfileTransfer = $this->getTransactionHandler()->handleTransaction(function() use ($merchantProfileTransfer) {
96 96
             return $this->executeUpdateTransaction($merchantProfileTransfer);
97 97
         });
98 98
 
Please login to merge, or discard this patch.
tests/SprykerTest/Zed/CustomerGroup/_support/Helper/CustomerGroupHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
         $customerGroupFacade = $this->getCustomerGroupFacade();
32 32
         $customerGroupTransfer = $customerGroupFacade->add($customerGroupTransfer);
33 33
 
34
-        $this->getDataCleanupHelper()->_addCleanup(function () use ($customerGroupTransfer): void {
34
+        $this->getDataCleanupHelper()->_addCleanup(function() use ($customerGroupTransfer): void {
35 35
             $this->cleanupCustomerGroup($customerGroupTransfer->getIdCustomerGroup());
36 36
         });
37 37
 
Please login to merge, or discard this patch.
SprykerTest/Zed/CmsBlockGui/_support/CmsBlockGuiCommunicationTester.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
     public function registerCmsBlockStoreRelationFormTypePlugin(): void
42 42
     {
43
-        $this->setDependency(CmsBlockGuiDependencyProvider::PLUGIN_STORE_RELATION_FORM_TYPE, function () {
43
+        $this->setDependency(CmsBlockGuiDependencyProvider::PLUGIN_STORE_RELATION_FORM_TYPE, function() {
44 44
             return new StoreRelationToggleFormTypePlugin();
45 45
         });
46 46
     }
Please login to merge, or discard this patch.
_support/Helper/ProductDiscontinuedDataImportHelper.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
         $this->deleteProductDiscountedData();
25 25
 
26
-        $this->getDataCleanupHelper()->_addCleanup(function (): void {
26
+        $this->getDataCleanupHelper()->_addCleanup(function(): void {
27 27
             $this->deleteProductDiscountedData();
28 28
         });
29 29
     }
Please login to merge, or discard this patch.
CmsGui/tests/SprykerTest/Zed/CmsGui/_support/CmsGuiCommunicationTester.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
     public function registerCmsBlockStoreRelationFormTypePlugin(): void
42 42
     {
43
-        $this->setDependency(CmsGuiDependencyProvider::PLUGIN_STORE_RELATION_FORM_TYPE, function () {
43
+        $this->setDependency(CmsGuiDependencyProvider::PLUGIN_STORE_RELATION_FORM_TYPE, function() {
44 44
             return new StoreRelationToggleFormTypePlugin();
45 45
         });
46 46
     }
Please login to merge, or discard this patch.
Zed/MerchantRelationship/_support/Helper/MerchantRelationshipHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 
31 31
         $merchantRelationshipTransfer = $this->createOrUpdateMerchantRelationship($merchantRelationshipTransfer);
32 32
 
33
-        $this->getDataCleanupHelper()->_addCleanup(function () use ($merchantRelationshipTransfer): void {
33
+        $this->getDataCleanupHelper()->_addCleanup(function() use ($merchantRelationshipTransfer): void {
34 34
             $this->cleanupMerchantRelationship($merchantRelationshipTransfer);
35 35
         });
36 36
 
Please login to merge, or discard this patch.
SprykerTest/Zed/CategoryImage/_support/Helper/CategoryImageDataHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
         $categoryTransfer->addImageSet($categoryImageSetTransfer);
45 45
         $this->getCategoryImageFacade()->createCategoryImageSetsForCategory($categoryTransfer);
46 46
 
47
-        $this->getDataCleanupHelper()->_addCleanup(function () use ($categoryImageSetTransfer): void {
47
+        $this->getDataCleanupHelper()->_addCleanup(function() use ($categoryImageSetTransfer): void {
48 48
             $this->cleanupCategoryImageSet($categoryImageSetTransfer);
49 49
         });
50 50
 
Please login to merge, or discard this patch.