Completed
Push — master ( 613d98...fa04c9 )
by Rémi
20:40
created
src/Driver/PhpAmqpLibDriver.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -278,7 +278,7 @@
 block discarded – undo
278 278
     /**
279 279
      * @param AMQPMessage $message
280 280
      *
281
-     * @return array
281
+     * @return \string[]
282 282
      */
283 283
     private static function getHeaders(AMQPMessage $message)
284 284
     {
Please login to merge, or discard this patch.
src/Message.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
     }
86 86
 
87 87
     /**
88
-     * @return array
88
+     * @return string[]
89 89
      */
90 90
     public function getHeaders()
91 91
     {
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
@@ -24,10 +24,10 @@
 block discarded – undo
24 24
 $logger->pushHandler(new StreamHandler('php://output', 0));
25 25
 
26 26
 $driver = DriverFactory::getDriver([
27
-   'host' => 'default',
28
-   'port' => '5672',
29
-   'user' => 'guest',
30
-   'pwd' => 'guest'
27
+    'host' => 'default',
28
+    'port' => '5672',
29
+    'user' => 'guest',
30
+    'pwd' => 'guest'
31 31
 ]);
32 32
 
33 33
 $handlerBuilder = new HandlerBuilder($driver);
Please login to merge, or discard this patch.
examples/sync-message-sender.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.