MessageChannel::getName()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 4
Bugs 3 Features 0
Metric Value
c 4
b 3
f 0
dl 0
loc 3
rs 10
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
3
namespace PEIP\Channel;
4
5
/*
6
 * This file is part of the PEIP package.
7
 * (c) 2009-2016 Timo Michna <timomichna/yahoo.de>
8
 *
9
 * For the full copyright and license information, please view the LICENSE
10
 * file that was distributed with this source code.
11
 */
12
13
/**
14
 * MessageChannel.
15
 *
16
 * @author Timo Michna <timomichna/yahoo.de>
17
 * @implements \PEIP\INF\Channel\Channel
18
 */
19
class MessageChannel implements \PEIP\INF\Channel\Channel
20
{
21
    /**
22
     * @return
23
     */
24
    public function getName()
25
    {
26
    }
27
28
    /**
29
     * @param $message
30
     * @param $timeout
31
     *
32
     * @return
33
     */
34
    public function send(\PEIP\INF\Message\Message $message, $timeout = -1)
35
    {
36
    }
37
}
38