Completed
Push — master ( fa04c9...a542f0 )
by Rémi
07:34
created
examples/queue-config-pecl.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,4 +16,4 @@
 block discarded – undo
16 16
 $admin->declareExchange($exchangeName);
17 17
 $admin->declareAndBindQueue($exchangeName, $queueName);
18 18
 
19
-echo 'Added queue "'.$queueName.'" to exchange'."\n";
19
+echo 'Added queue "' . $queueName . '" to exchange' . "\n";
Please login to merge, or discard this patch.
examples/sync-message-sender-amqplib.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,5 +19,5 @@
 block discarded – undo
19 19
 $publisher = new SyncPublisher($driver, 'xchange');
20 20
 
21 21
 for ($i = 0; $i < $argv[1]; ++$i) {
22
-    echo $publisher->publish('event #'.$i, '', ['test' => 'testValue'])."\n";
22
+    echo $publisher->publish('event #' . $i, '', ['test' => 'testValue']) . "\n";
23 23
 }
Please login to merge, or discard this patch.
examples/async-message-sender-pecl.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,5 +19,5 @@
 block discarded – undo
19 19
 $publisher = new AsyncPublisher($driver, 'xchange');
20 20
 
21 21
 for ($i = 0; $i < $argv[1]; ++$i) {
22
-    $publisher->publish('event #'.$i, '', ['test' => 'testValue']);
22
+    $publisher->publish('event #' . $i, '', ['test' => 'testValue']);
23 23
 }
Please login to merge, or discard this patch.
examples/sync-message-sender-pecl.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,5 +19,5 @@
 block discarded – undo
19 19
 $publisher = new SyncPublisher($driver, 'xchange');
20 20
 
21 21
 for ($i = 0; $i < $argv[1]; ++$i) {
22
-    echo $publisher->publish('event #'.$i, '', ['test' => 'testValue'])."\n";
22
+    echo $publisher->publish('event #' . $i, '', ['test' => 'testValue']) . "\n";
23 23
 }
Please login to merge, or discard this patch.
examples/sync-message-worker.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,10 +15,10 @@
 block discarded – undo
15 15
 require_once __DIR__ . '/../vendor/autoload.php';
16 16
 
17 17
 $driver = DriverFactory::getDriver([
18
-   'host' => 'default',
19
-   'port' => '5672',
20
-   'user' => 'guest',
21
-   'pwd' => 'guest'
18
+    'host' => 'default',
19
+    'port' => '5672',
20
+    'user' => 'guest',
21
+    'pwd' => 'guest'
22 22
 ]);
23 23
 $publisher = new SyncPublisher($driver, 'xchange');
24 24
 
Please login to merge, or discard this patch.
examples/async-message-sender.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,5 +19,5 @@
 block discarded – undo
19 19
 $publisher = new AsyncPublisher($driver, 'xchange');
20 20
 
21 21
 for ($i = 0; $i < $argv[1]; ++$i) {
22
-    $publisher->publish('event #'.$i, '', ['test' => 'testValue']);
22
+    $publisher->publish('event #' . $i, '', ['test' => 'testValue']);
23 23
 }
Please login to merge, or discard this patch.