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

AnyDelayStrategyStub::delayMessage()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 4
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