Test Failed
Push — master ( 01c8bf...47a47f )
by Daniel
03:32
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/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/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.
Tests/Transport/Rpc/RpcClientOld.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   +4 added lines patch added patch discarded remove patch
@@ -17,6 +17,10 @@
 block discarded – undo
17 17
     private $exchange;
18 18
     private $exchangeType;
19 19
 
20
+    /**
21
+     * @param string $exchange
22
+     * @param string $fromName
23
+     */
20 24
     public function __construct(
21 25
         $exchange,
22 26
         $exchangeType = ExchangeType::FANOUT,
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/Task.php 1 patch
Doc Comments   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,6 +16,10 @@  discard block
 block discarded – undo
16 16
     private $fromName;
17 17
     private $queueName;
18 18
 
19
+    /**
20
+     * @param string $queueName
21
+     * @param string $fromName
22
+     */
19 23
     public function __construct($queueName, ConnectionManager $manager, $fromName)
20 24
     {
21 25
         $this->queueName = $queueName;
@@ -107,7 +111,7 @@  discard block
 block discarded – undo
107 111
     }
108 112
 
109 113
     /**
110
-     * @return string
114
+     * @return boolean
111 115
      */
112 116
     public function getExchange()
113 117
     {
@@ -115,7 +119,7 @@  discard block
 block discarded – undo
115 119
     }
116 120
 
117 121
     /**
118
-     * @return string
122
+     * @return boolean
119 123
      */
120 124
     public function getExchangeType()
121 125
     {
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
@@ -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/Rpc/RpcClient.php 1 patch
Doc Comments   +10 added lines, -6 removed lines patch added patch discarded remove patch
@@ -24,6 +24,10 @@  discard block
 block discarded – undo
24 24
     private $correlationId;
25 25
     private $callbackQueue;
26 26
 
27
+    /**
28
+     * @param string $queueName
29
+     * @param string $fromName
30
+     */
27 31
     public function __construct($queueName, ConnectionManager $manager, $fromName, $connectionName = 'default')
28 32
     {
29 33
         $this->connectionName = $connectionName;
@@ -71,7 +75,7 @@  discard block
 block discarded – undo
71 75
     }
72 76
 
73 77
     /**
74
-     * @param $data
78
+     * @param string $data
75 79
      * @param int $expire
76 80
      * @param int $priority
77 81
      * @throws QueueNotFoundException
@@ -150,7 +154,7 @@  discard block
 block discarded – undo
150 154
     /**
151 155
      * @todo unecessary method set, its only exists to run tests whitout stay jailed in infinite while waiting response.
152 156
      *
153
-     * @param $content
157
+     * @param string $content
154 158
      */
155 159
     public function setResponse($content)
156 160
     {
@@ -180,7 +184,7 @@  discard block
 block discarded – undo
180 184
     }
181 185
 
182 186
     /**
183
-     * @return string
187
+     * @return boolean
184 188
      */
185 189
     public function getExchange()
186 190
     {
@@ -188,7 +192,7 @@  discard block
 block discarded – undo
188 192
     }
189 193
 
190 194
     /**
191
-     * @return string
195
+     * @return boolean
192 196
      */
193 197
     public function getExchangeType()
194 198
     {
@@ -205,8 +209,8 @@  discard block
 block discarded – undo
205 209
 
206 210
     /**
207 211
      * @param CmobiAMQPConnectionInterface $connection
208
-     * @param $expire
209
-     * @param $sufix
212
+     * @param integer $expire
213
+     * @param string $sufix
210 214
      * @param $corralationId
211 215
      * @return CmobiAMQPConnectionInterface
212 216
      */
Please login to merge, or discard this patch.