Skip to content

Commit c365fd8

Browse files
committed
[CS] Remove @inheritdoc PHPDoc
1 parent f89dfbb commit c365fd8

File tree

3 files changed

+0
-30
lines changed

3 files changed

+0
-30
lines changed

Transport/BeanstalkdReceiver.php

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

36-
/**
37-
* {@inheritdoc}
38-
*/
3936
public function get(): iterable
4037
{
4138
$beanstalkdEnvelope = $this->connection->get();
@@ -58,25 +55,16 @@ public function get(): iterable
5855
return [$envelope->with(new BeanstalkdReceivedStamp($beanstalkdEnvelope['id'], $this->connection->getTube()))];
5956
}
6057

61-
/**
62-
* {@inheritdoc}
63-
*/
6458
public function ack(Envelope $envelope): void
6559
{
6660
$this->connection->ack($this->findBeanstalkdReceivedStamp($envelope)->getId());
6761
}
6862

69-
/**
70-
* {@inheritdoc}
71-
*/
7263
public function reject(Envelope $envelope): void
7364
{
7465
$this->connection->reject($this->findBeanstalkdReceivedStamp($envelope)->getId());
7566
}
7667

77-
/**
78-
* {@inheritdoc}
79-
*/
8068
public function getMessageCount(): int
8169
{
8270
return $this->connection->getMessageCount();

Transport/BeanstalkdSender.php

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

34-
/**
35-
* {@inheritdoc}
36-
*/
3734
public function send(Envelope $envelope): Envelope
3835
{
3936
$encodedMessage = $this->serializer->encode($envelope);

Transport/BeanstalkdTransport.php

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -33,41 +33,26 @@ public function __construct(Connection $connection, SerializerInterface $seriali
3333
$this->serializer = $serializer ?? new PhpSerializer();
3434
}
3535

36-
/**
37-
* {@inheritdoc}
38-
*/
3936
public function get(): iterable
4037
{
4138
return $this->getReceiver()->get();
4239
}
4340

44-
/**
45-
* {@inheritdoc}
46-
*/
4741
public function ack(Envelope $envelope): void
4842
{
4943
$this->getReceiver()->ack($envelope);
5044
}
5145

52-
/**
53-
* {@inheritdoc}
54-
*/
5546
public function reject(Envelope $envelope): void
5647
{
5748
$this->getReceiver()->reject($envelope);
5849
}
5950

60-
/**
61-
* {@inheritdoc}
62-
*/
6351
public function getMessageCount(): int
6452
{
6553
return $this->getReceiver()->getMessageCount();
6654
}
6755

68-
/**
69-
* {@inheritdoc}
70-
*/
7156
public function send(Envelope $envelope): Envelope
7257
{
7358
return $this->getSender()->send($envelope);

0 commit comments

Comments
 (0)