Completed
Push — master ( a435b5...54b9b0 )
by Guillaume
14:56
created
src/Starkerxp/RabbitmqBundle/Command/ReceiverLockCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
                 true,
57 57
                 true,
58 58
                 [
59
-                    'x-message-ttl' => ['I', $this->getDelaiTemporisation() * 1000],   // delay in seconds to milliseconds
59
+                    'x-message-ttl' => ['I', $this->getDelaiTemporisation() * 1000], // delay in seconds to milliseconds
60 60
                     "x-expires" => ["I", $this->getDelaiTemporisation() * 1000 + 1000],
61 61
                     'x-dead-letter-exchange' => ['S', 'exchange_'.$nomChannel] // after message expiration in delay queue, move message to the right.now.queue
62 62
                 ]
Please login to merge, or discard this patch.
src/Starkerxp/CampaignBundle/Form/Type/EventType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
                 'class' => Campaign::class,
35 35
                 'multiple' => false,
36 36
                 'required' => false,
37
-                'query_builder' => function (CampaignRepository $repository) {
37
+                'query_builder' => function(CampaignRepository $repository) {
38 38
                     return $repository->getQueryListe();
39 39
                 },
40 40
                 'constraints' => [
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
                 'class' => Template::class,
52 52
                 'multiple' => false,
53 53
                 'required' => false,
54
-                'query_builder' => function (TemplateRepository $repository) {
54
+                'query_builder' => function(TemplateRepository $repository) {
55 55
                     return $repository->getQueryListe();
56 56
                 },
57 57
                 'constraints' => [
Please login to merge, or discard this patch.