Passed
Push — master ( 093472...d84877 )
by
unknown
26:06
created
tests/SprykerTest/Zed/ContentStorage/Business/ContentStorageFacadeTest.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.
Spryker/Zed/ContentStorage/Business/ContentStorage/ContentStorageWriter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
         $contentTransfers = $this->contentStorageRepository->findContentByIds($contentIds);
72 72
         $contentStorageTransfers = $this->contentStorageRepository->findContentStorageByContentIds($contentIds);
73 73
 
74
-        $this->getTransactionHandler()->handleTransaction(function () use ($contentTransfers, $contentStorageTransfers) {
74
+        $this->getTransactionHandler()->handleTransaction(function() use ($contentTransfers, $contentStorageTransfers) {
75 75
             return $this->executePublishTransaction($contentTransfers, $contentStorageTransfers);
76 76
         });
77 77
     }
Please login to merge, or discard this patch.
Bundles/Storage/tests/SprykerTest/Client/Storage/Redis/ServiceTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -319,7 +319,7 @@
 block discarded – undo
319 319
     {
320 320
         StorageClient::$cachedKeys = [];
321 321
 
322
-        $getMultiFunctionStub = function ($keys) {
322
+        $getMultiFunctionStub = function($keys) {
323 323
             $result = [];
324 324
             foreach ($keys as $key) {
325 325
                 $result['kv:' . $key] = '_' . strtoupper($key);
Please login to merge, or discard this patch.
Twig/src/Spryker/Yves/Twig/Plugin/ServiceProvider/TwigServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      */
30 30
     public function register(Application $app)
31 31
     {
32
-        $app[static::TWIG_LOADER_YVES] = function () {
32
+        $app[static::TWIG_LOADER_YVES] = function() {
33 33
             return $this->getFactory()->createFilesystemLoader();
34 34
         };
35 35
 
@@ -37,8 +37,8 @@  discard block
 block discarded – undo
37 37
             $app['twig'] = $app->share(
38 38
                 $app->extend(
39 39
                     'twig',
40
-                    function (Environment $twig) use ($app) {
41
-                        $callback = function () use ($app) {
40
+                    function(Environment $twig) use ($app) {
41
+                        $callback = function() use ($app) {
42 42
                             $fragmentHandler = new FragmentHandler($app['request_stack'], $app['fragment.renderers']);
43 43
 
44 44
                             return new HttpKernelRuntime($fragmentHandler);
Please login to merge, or discard this patch.
ProductReview/Plugin/Provider/ProductAbstractReviewTwigServiceProvider.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
         $twigExtension = $this->getFactory()->createProductAbstractReviewTwigExtension();
28 28
 
29 29
         $app['twig'] = $app->share(
30
-            $app->extend('twig', function (Environment $twig) use ($twigExtension) {
30
+            $app->extend('twig', function(Environment $twig) use ($twigExtension) {
31 31
                 $twig->addExtension($twigExtension);
32 32
 
33 33
                 return $twig;
Please login to merge, or discard this patch.
Spryker/Yves/Navigation/Plugin/Provider/NavigationTwigServiceProvider.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
         $twigExtension = $this->getFactory()->createNavigationTwigExtension();
28 28
 
29 29
         $app['twig'] = $app->share(
30
-            $app->extend('twig', function (Environment $twig) use ($twigExtension) {
30
+            $app->extend('twig', function(Environment $twig) use ($twigExtension) {
31 31
                 $twig->addExtension($twigExtension);
32 32
 
33 33
                 return $twig;
Please login to merge, or discard this patch.
src/Spryker/Yves/Money/Plugin/ServiceProvider/TwigMoneyServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
     public function register(Application $app)
29 29
     {
30 30
         $app['twig'] = $app->share(
31
-            $app->extend('twig', function (Environment $twig) {
31
+            $app->extend('twig', function(Environment $twig) {
32 32
                 $twig->addFilter($this->getMoneyFilter());
33 33
                 $twig->addFilter($this->getMoneyRawFilter());
34 34
 
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     {
54 54
         $moneyFactory = $this->getFactory();
55 55
 
56
-        $filter = new TwigFilter('money', function ($money, $withSymbol = true, $isoCode = null) use ($moneyFactory) {
56
+        $filter = new TwigFilter('money', function($money, $withSymbol = true, $isoCode = null) use ($moneyFactory) {
57 57
             if (!($money instanceof MoneyTransfer)) {
58 58
                 $money = $this->getMoneyTransfer($money, $isoCode);
59 59
             }
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     {
76 76
         $moneyFactory = $this->getFactory();
77 77
 
78
-        $filter = new TwigFilter('moneyRaw', function ($money, $isoCode = null) use ($moneyFactory) {
78
+        $filter = new TwigFilter('moneyRaw', function($money, $isoCode = null) use ($moneyFactory) {
79 79
             if (!($money instanceof MoneyTransfer)) {
80 80
                 $money = $this->getMoneyTransfer($money, $isoCode);
81 81
             }
Please login to merge, or discard this patch.
Zed/Money/Communication/Plugin/ServiceProvider/TwigMoneyServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     public function register(Application $app)
34 34
     {
35 35
         $app['twig'] = $app->share(
36
-            $app->extend('twig', function (Environment $twig) {
36
+            $app->extend('twig', function(Environment $twig) {
37 37
                 $twig->addFilter($this->getFilter());
38 38
                 $twig->addFunction($this->getMoneyFormTableFunction($twig));
39 39
 
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
     {
59 59
         $moneyFacade = $this->getFacade();
60 60
 
61
-        $filter = new TwigFilter('money', function ($money, $withSymbol = true, $isoCode = null) use ($moneyFacade) {
61
+        $filter = new TwigFilter('money', function($money, $withSymbol = true, $isoCode = null) use ($moneyFacade) {
62 62
             if (!($money instanceof MoneyTransfer)) {
63 63
                 if (is_int($money)) {
64 64
                     $money = $moneyFacade->fromInteger($money, $isoCode);
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
 
95 95
         return new TwigFunction(
96 96
             static::FUNCTION_NAME_MONEY_COLLECTION,
97
-            function ($moneyValueFormViewCollection) use ($twig) {
97
+            function($moneyValueFormViewCollection) use ($twig) {
98 98
                 return $twig->render(
99 99
                     static::TEMPLATE_PATH_MONEY_TABLE,
100 100
                     [
Please login to merge, or discard this patch.
Yves/Money/Plugin/ServiceProvider/TwigMoneyServiceProviderTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     {
36 36
         $moneyServiceProvider = new TwigMoneyServiceProvider();
37 37
         $application = new Application();
38
-        $application['twig'] = function () {
38
+        $application['twig'] = function() {
39 39
             return new Environment(new FilesystemLoader());
40 40
         };
41 41
 
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     {
67 67
         $moneyServiceProvider = new TwigMoneyServiceProvider();
68 68
         $application = new Application();
69
-        $application['twig'] = function () {
69
+        $application['twig'] = function() {
70 70
             return new Environment(new FilesystemLoader());
71 71
         };
72 72
         $moneyServiceProvider->register($application);
Please login to merge, or discard this patch.