Test Failed
Pull Request — master (#39)
by Aleksandr
05:36
created

NullProducer   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
dl 0
loc 4
rs 10
c 1
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A publish() 0 2 1
1
<?php
2
3
namespace OldSound\RabbitMqBundle\Producer;
4
5
class NullProducer implements ProducerInterface
6
{
7
    public function publish(string $body, string $routingKey = '', array $additionalProperties = [], ?array $headers = null): void
8
    {
9
    }
10
}
11