| @@ -130,7 +130,7 @@ discard block | ||
| 130 | 130 | } | 
| 131 | 131 | |
| 132 | 132 | /** | 
| 133 | - * @param $memory | |
| 133 | + * @param integer $memory | |
| 134 | 134 | * | 
| 135 | 135 | * @return string | 
| 136 | 136 | */ | 
| @@ -182,7 +182,7 @@ discard block | ||
| 182 | 182 | } | 
| 183 | 183 | |
| 184 | 184 | /** | 
| 185 | - * @return EventDispatcherInterface | |
| 185 | + * @return \Symfony\Component\EventDispatcher\EventDispatcherInterface | |
| 186 | 186 | */ | 
| 187 | 187 | private function getNotificationDispatcher() | 
| 188 | 188 |      { | 
| @@ -147,7 +147,7 @@ | ||
| 147 | 147 | * | 
| 148 | 148 | * @param array $types | 
| 149 | 149 | * | 
| 150 | - * @return mixed | |
| 150 | + * @return MessageInterface[] | |
| 151 | 151 | */ | 
| 152 | 152 | protected function findNextMessages($types) | 
| 153 | 153 |      { | 
| @@ -16,6 +16,9 @@ | ||
| 16 | 16 | |
| 17 | 17 | class Message extends BaseMessage | 
| 18 | 18 |  { | 
| 19 | + /** | |
| 20 | + * @param integer $id | |
| 21 | + */ | |
| 19 | 22 | public function setId($id) | 
| 20 | 23 |      { | 
| 21 | 24 | $this->id = $id; | 
| @@ -58,6 +58,7 @@ | ||
| 58 | 58 | } | 
| 59 | 59 | |
| 60 | 60 | /** | 
| 61 | + * @param \Closure $qbCallback | |
| 61 | 62 | * @return \Sonata\NotificationBundle\Entity\MessageManager | 
| 62 | 63 | */ | 
| 63 | 64 | protected function getMessageManager($qbCallback) | 
| @@ -305,6 +305,12 @@ | ||
| 305 | 305 | $this->assertInstanceOf(AMQPMessageIterator::class, $iterator); | 
| 306 | 306 | } | 
| 307 | 307 | |
| 308 | + /** | |
| 309 | + * @param string $deadLetterExchange | |
| 310 | + * @param string $deadLetterRoutingKey | |
| 311 | + * @param integer $ttl | |
| 312 | + * @param integer $prefetchCount | |
| 313 | + */ | |
| 308 | 314 | protected function getBackendAndContextMock($recover = false, $deadLetterExchange = null, $deadLetterRoutingKey = null, $ttl = null, $prefetchCount = null) | 
| 309 | 315 |      { | 
| 310 | 316 | $backend = new AMQPBackend( | 
| @@ -66,9 +66,9 @@ discard block | ||
| 66 | 66 | } | 
| 67 | 67 | |
| 68 | 68 | /** | 
| 69 | - * @param mixed $queueName | |
| 69 | + * @param string $queueName | |
| 70 | 70 | * | 
| 71 | - * @return AmqpConsumer|\PHPUnit_Framework_MockObject_MockObject | |
| 71 | + * @return AmqpConsumer | |
| 72 | 72 | */ | 
| 73 | 73 | private function createConsumerStub($queueName = null) | 
| 74 | 74 |      { | 
| @@ -90,7 +90,7 @@ discard block | ||
| 90 | 90 | } | 
| 91 | 91 | |
| 92 | 92 | /** | 
| 93 | - * @return AMQPChannel|\PHPUnit_Framework_MockObject_MockObject|AMQPChannel | |
| 93 | + * @return AMQPChannel | |
| 94 | 94 | */ | 
| 95 | 95 | private function createChannelMock() | 
| 96 | 96 |      { |