Completed
Push — master ( 11b317...37df4d )
by Lucas
09:27
created

Dummy   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 16
ccs 0
cts 3
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A publish() 0 3 1
1
<?php
2
/**
3
 * dummy publisher
4
 */
5
6
namespace Graviton\RabbitMqBundle\Producer;
7
8
use OldSound\RabbitMqBundle\RabbitMq\Producer;
9
10
/**
11
 * @author   List of contributors <https://github.com/libgraviton/graviton/graphs/contributors>
12
 * @license  http://opensource.org/licenses/gpl-license.php GNU Public License
13
 * @link     http://swisscom.ch
14
 */
15
class Dummy extends Producer
16
{
17
18
    /**
19
     * Publishes the message and merges additional properties with basic properties
20
     *
21
     * @param string $msgBody              body
22
     * @param string $routingKey           routingKey
23
     * @param array  $additionalProperties properties
24
     *
25
     * @return void
26
     */
27
    public function publish($msgBody, $routingKey = '', $additionalProperties = array())
28
    {
29
    }
30
}
31