EventDispatcher
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 4
c 0
b 0
f 0
ccs 0
cts 0
cp 0
wmc 0
1
<?php
2
3
namespace ByTIC\EventDispatcher\Dispatcher;
4
5
/**
6
 * Class EventDispatcher
7
 * @package ByTIC\EventDispatcher\Dispatcher
8
 */
9
class EventDispatcher extends \Symfony\Component\EventDispatcher\EventDispatcher implements EventDispatcherInterface
10
{
11
    use Traits\ListenForInterfacesTrait;
12
    use Traits\MakeListenerTrait;
13
}
14