Skip to content

Commit 37a2699

Browse files
committed
[CS] Remove @inheritdoc PHPDoc
1 parent 7362b11 commit 37a2699

File tree

3 files changed

+0
-39
lines changed

3 files changed

+0
-39
lines changed

Transport/AmqpReceiver.php

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,11 @@ public function __construct(Connection $connection, SerializerInterface $seriali
3636
$this->serializer = $serializer ?? new PhpSerializer();
3737
}
3838

39-
/**
40-
* {@inheritdoc}
41-
*/
4239
public function get(): iterable
4340
{
4441
yield from $this->getFromQueues($this->connection->getQueueNames());
4542
}
4643

47-
/**
48-
* {@inheritdoc}
49-
*/
5044
public function getFromQueues(array $queueNames): iterable
5145
{
5246
foreach ($queueNames as $queueName) {
@@ -83,9 +77,6 @@ private function getEnvelope(string $queueName): iterable
8377
yield $envelope->with(new AmqpReceivedStamp($amqpEnvelope, $queueName));
8478
}
8579

86-
/**
87-
* {@inheritdoc}
88-
*/
8980
public function ack(Envelope $envelope): void
9081
{
9182
try {
@@ -100,9 +91,6 @@ public function ack(Envelope $envelope): void
10091
}
10192
}
10293

103-
/**
104-
* {@inheritdoc}
105-
*/
10694
public function reject(Envelope $envelope): void
10795
{
10896
$stamp = $this->findAmqpStamp($envelope);
@@ -113,9 +101,6 @@ public function reject(Envelope $envelope): void
113101
);
114102
}
115103

116-
/**
117-
* {@inheritdoc}
118-
*/
119104
public function getMessageCount(): int
120105
{
121106
try {

Transport/AmqpSender.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,6 @@ public function __construct(Connection $connection, SerializerInterface $seriali
3535
$this->serializer = $serializer ?? new PhpSerializer();
3636
}
3737

38-
/**
39-
* {@inheritdoc}
40-
*/
4138
public function send(Envelope $envelope): Envelope
4239
{
4340
$encodedMessage = $this->serializer->encode($envelope);

Transport/AmqpTransport.php

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -35,57 +35,36 @@ public function __construct(Connection $connection, SerializerInterface $seriali
3535
$this->serializer = $serializer ?? new PhpSerializer();
3636
}
3737

38-
/**
39-
* {@inheritdoc}
40-
*/
4138
public function get(): iterable
4239
{
4340
return $this->getReceiver()->get();
4441
}
4542

46-
/**
47-
* {@inheritdoc}
48-
*/
4943
public function getFromQueues(array $queueNames): iterable
5044
{
5145
return $this->getReceiver()->getFromQueues($queueNames);
5246
}
5347

54-
/**
55-
* {@inheritdoc}
56-
*/
5748
public function ack(Envelope $envelope): void
5849
{
5950
$this->getReceiver()->ack($envelope);
6051
}
6152

62-
/**
63-
* {@inheritdoc}
64-
*/
6553
public function reject(Envelope $envelope): void
6654
{
6755
$this->getReceiver()->reject($envelope);
6856
}
6957

70-
/**
71-
* {@inheritdoc}
72-
*/
7358
public function send(Envelope $envelope): Envelope
7459
{
7560
return $this->getSender()->send($envelope);
7661
}
7762

78-
/**
79-
* {@inheritdoc}
80-
*/
8163
public function setup(): void
8264
{
8365
$this->connection->setup();
8466
}
8567

86-
/**
87-
* {@inheritdoc}
88-
*/
8968
public function getMessageCount(): int
9069
{
9170
return $this->getReceiver()->getMessageCount();

0 commit comments

Comments
 (0)