Completed
Push — master ( bf6474...78183b )
by Daniel
11:37
created
Transport/Rpc/RpcQueueBag.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
     }
275 275
 
276 276
     /**
277
-     * @return string
277
+     * @return boolean
278 278
      */
279 279
     public function getExchange()
280 280
     {
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
     }
283 283
 
284 284
     /**
285
-     * @return string
285
+     * @return boolean
286 286
      */
287 287
     public function getType()
288 288
     {
Please login to merge, or discard this patch.
Transport/Worker/Task.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,6 +15,9 @@  discard block
 block discarded – undo
15 15
     private $fromName;
16 16
     private $queueName;
17 17
 
18
+    /**
19
+     * @param string $queueName
20
+     */
18 21
     public function __construct($queueName, ConnectionManager $manager, $fromName = '')
19 22
     {
20 23
         $this->queueName = $queueName;
@@ -87,7 +90,7 @@  discard block
 block discarded – undo
87 90
     }
88 91
 
89 92
     /**
90
-     * @return string
93
+     * @return boolean
91 94
      */
92 95
     public function getExchange()
93 96
     {
@@ -95,7 +98,7 @@  discard block
 block discarded – undo
95 98
     }
96 99
 
97 100
     /**
98
-     * @return string
101
+     * @return boolean
99 102
      */
100 103
     public function getExchangeType()
101 104
     {
Please login to merge, or discard this patch.
Tests/Transport/Rpc/RpcClientTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@
 block discarded – undo
129 129
 
130 130
     /**
131 131
      * @param string $msg
132
-     * @param null   $correlationId
132
+     * @param string   $correlationId
133 133
      *
134 134
      * @return CmobiAMQPMessage
135 135
      */
Please login to merge, or discard this patch.
Transport/Subscriber/Publisher.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,6 +17,9 @@
 block discarded – undo
17 17
     private $exchange;
18 18
     private $exchangeType;
19 19
 
20
+    /**
21
+     * @param string $exchange
22
+     */
20 23
     public function __construct(
21 24
         $exchange,
22 25
         $exchangeType = ExchangeType::FANOUT,
Please login to merge, or discard this patch.
Transport/Rpc/RpcClient.php 1 patch
Doc Comments   +7 added lines, -4 removed lines patch added patch discarded remove patch
@@ -19,6 +19,9 @@  discard block
 block discarded – undo
19 19
     private $correlationId;
20 20
     private $callbackQueue;
21 21
 
22
+    /**
23
+     * @param string $queueName
24
+     */
22 25
     public function __construct($queueName, ConnectionManager $manager, $fromName = '')
23 26
     {
24 27
         $this->queueName = $queueName;
@@ -54,7 +57,7 @@  discard block
 block discarded – undo
54 57
     }
55 58
 
56 59
     /**
57
-     * @param $data
60
+     * @param string $data
58 61
      * @param int $expire
59 62
      * @param int $priority
60 63
      * @throws QueueNotFoundException
@@ -140,7 +143,7 @@  discard block
 block discarded – undo
140 143
     /**
141 144
      * @todo unecessary method set, its only exists to run tests whitout stay jailed in infinite while waiting response.
142 145
      *
143
-     * @param $content
146
+     * @param string $content
144 147
      */
145 148
     public function setResponse($content)
146 149
     {
@@ -170,7 +173,7 @@  discard block
 block discarded – undo
170 173
     }
171 174
 
172 175
     /**
173
-     * @return string
176
+     * @return boolean
174 177
      */
175 178
     public function getExchange()
176 179
     {
@@ -178,7 +181,7 @@  discard block
 block discarded – undo
178 181
     }
179 182
 
180 183
     /**
181
-     * @return string
184
+     * @return boolean
182 185
      */
183 186
     public function getExchangeType()
184 187
     {
Please login to merge, or discard this patch.
Transport/Rpc/RpcServerBuilder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
     }
26 26
 
27 27
     /**
28
-     * @param $queueName
28
+     * @param string $queueName
29 29
      * @param QueueServiceInterface $queueService
30 30
      * @param QueueBagInterface $queueBag
31 31
      * @return Queue
Please login to merge, or discard this patch.
Transport/Subscriber/SubscriberBuilder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
     }
26 26
 
27 27
     /**
28
-     * @param $queueName
28
+     * @param string $queueName
29 29
      * @param QueueServiceInterface $queueService
30 30
      * @param QueueBagInterface $queueBag
31 31
      * @return Queue
Please login to merge, or discard this patch.
Transport/Worker/WorkerBuilder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     }
27 27
 
28 28
     /**
29
-     * @param $queueName
29
+     * @param string $queueName
30 30
      * @param QueueServiceInterface $queueService
31 31
      * @param QueueBagInterface $queueBag
32 32
      * @return Queue
Please login to merge, or discard this patch.
Transport/Worker/WorkerQueueBag.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,6 +10,9 @@  discard block
 block discarded – undo
10 10
     private $resolver;
11 11
     private $options;
12 12
 
13
+    /**
14
+     * @param string $queueName
15
+     */
13 16
     public function __construct(
14 17
         $queueName,
15 18
         $basicQos = 1,
@@ -187,7 +190,7 @@  discard block
 block discarded – undo
187 190
     }
188 191
 
189 192
     /**
190
-     * @return string
193
+     * @return boolean
191 194
      */
192 195
     public function getExchange()
193 196
     {
@@ -195,7 +198,7 @@  discard block
 block discarded – undo
195 198
     }
196 199
 
197 200
     /**
198
-     * @return string
201
+     * @return boolean
199 202
      */
200 203
     public function getType()
201 204
     {
Please login to merge, or discard this patch.