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

Dummy::publish()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 3
ccs 0
cts 3
cp 0
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 3
crap 2
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