AbstractEvent
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 0
dl 0
loc 4
ccs 0
cts 0
cp 0
c 0
b 0
f 0
1
<?php
2
/**
3
 * Async sockets
4
 *
5
 * @copyright Copyright (c) 2015-2017, Efimov Evgenij <[email protected]>
6
 *
7
 * This source file is subject to the MIT license that is bundled
8
 * with this source code in the file LICENSE.
9
 */
10
namespace AsyncSockets\Event;
11
12
/**
13
 * Define AbstractEvent as the alias for Symfony event object, so if you have installed
14
 * symfony EventDispatcher component then AbstractEvent will be fully compatible with
15
 * EventDispatcher's event system
16
 */
17
if (!class_alias('Symfony\Component\EventDispatcher\Event', 'AsyncSockets\Event\AbstractEvent', true)) {
18
    /**
19
     * Class AbstractEvent
20
     */
21
    abstract class AbstractEvent
22
    {
23
24
    }
25
}
26