Completed
Pull Request — 3.x (#387)
by
unknown
01:41
created

AnyDelayStrategyStub   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 9
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A delayMessage() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Sonata\NotificationBundle\Tests\Mock;
6
7
use Enqueue\AmqpTools\DelayStrategy;
8
use Interop\Amqp\AmqpContext;
9
use Interop\Amqp\AmqpDestination;
10
use Interop\Amqp\AmqpMessage;
11
12
class AnyDelayStrategyStub implements DelayStrategy
13
{
14
    /**
15
     * {@inheritDoc}
16
     */
17
    public function delayMessage(AmqpContext $context, AmqpDestination $dest, AmqpMessage $message, $delayMsec)
18
    {
19
    }
20
}
21