Completed
Push — master ( 9bf5de...63a510 )
by Peter
22:57
created

Bus::publish()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 6
ccs 5
cts 5
cp 1
rs 9.4285
c 0
b 0
f 0
cc 2
eloc 3
nc 2
nop 1
crap 2
1
<?php
2
/**
3
 * GpsLab component.
4
 *
5
 * @author    Peter Gribanov <[email protected]>
6
 * @copyright Copyright (c) 2016, Peter Gribanov
7
 * @license   http://opensource.org/licenses/MIT
8
 */
9
10
namespace GpsLab\Domain\Event\Bus;
11
12
/**
13
 * @deprecated It will be removed in 2.0. Use EventBus class
14
 * @see EventBus
15
 */
16
class Bus extends EventBus implements BusInterface
0 ignored issues
show
Deprecated Code introduced by
The interface GpsLab\Domain\Event\Bus\BusInterface has been deprecated with message: It will be removed in 2.0. Use EventBusInterface interface

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.

Loading history...
17
{
18
}
19