Completed
Branch master (38d957)
by Quim
05:03
created
src/Cmp/Queue/Infrastructure/RabbitMQ/AMQPLazyConnectionSingleton.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -9,6 +9,12 @@
 block discarded – undo
9 9
 
10 10
     private static $amqpLazyConnection;
11 11
 
12
+    /**
13
+     * @param string $host
14
+     * @param string $port
15
+     * @param string $user
16
+     * @param string $password
17
+     */
12 18
     public static function getInstance($host, $port, $user, $password, $vhost = '/')
13 19
     {
14 20
         if(null === static::$amqpLazyConnection) {
Please login to merge, or discard this patch.
src/Cmp/Queue/Infrastructure/RabbitMQ/RabbitMQReader.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -51,6 +51,9 @@
 block discarded – undo
51 51
         $this->channel->wait();
52 52
     }
53 53
 
54
+    /**
55
+     * @param callable $callback
56
+     */
54 57
     private function initialize($callback)
55 58
     {
56 59
         $this->rabbitMQMessageHandler->setEventCallback($callback);
Please login to merge, or discard this patch.