Completed
Pull Request — master (#152)
by
unknown
02:44
created

EchoDataProvider   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
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 8
rs 10
c 0
b 0
f 0
ccs 0
cts 3
cp 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A onEcho() 0 4 1
1
<?php
2
3
namespace eXpansion\Framework\GameManiaplanet\DataProviders;
4
5
use eXpansion\Framework\Core\DataProviders\AbstractDataProvider;
6
7
/**
8
 * VoteDataProvider provides vote information to plugins.
9
 *
10
 * @package eXpansion\Framework\Core\DataProviders
11
 * @author reaby
12
 */
13
class EchoDataProvider extends AbstractDataProvider
14
{
15
16
    public function onEcho($internal, $public)
17
    {
18
        $this->dispatch(__FUNCTION__, [$internal, $public]);
19
    }
20
}
21