Completed
Push — master ( b5cc14...d04358 )
by Sergii
23:17 queued 02:11
created

PubSubRouter::dispatch()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 2
c 0
b 0
f 0
ccs 0
cts 2
cp 0
rs 10
cc 1
eloc 0
nc 1
nop 0
crap 2
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: conci
5
 * Date: 10/24/17
6
 * Time: 11:05 AM
7
 */
8
9
namespace sonrac\WAMP\Routers;
10
11
use sonrac\WAMP\Contracts\PubSubRouterInterface;
12
13
/**
14
 * Class PubSubRouter
15
 * Publisher/subscribers router
16
 *
17
 * @package sonrac\WAMP
18
 */
19
class PubSubRouter extends Router implements PubSubRouterInterface
20
{
21
    /**
22
     * @inheritDoc
23
     */
24
    public function dispatch()
25
    {
26
27
    }
28
29
}
30