Connection
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 1
dl 0
loc 4
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Adgoal\DBALFaultTolerance;
6
7
use Doctrine\DBAL\Connection as DBALConnection;
8
9
/**
10
 * Class Connection.
11
 */
12
class Connection extends DBALConnection implements ConnectionInterface
0 ignored issues
show
Bug introduced by
There is at least one abstract method in this class. Maybe declare it as abstract, or implement the remaining methods: close, getEventManager
Loading history...
13
{
14
    use ConnectionTrait;
15
}
16