Completed
Push — master ( a52629...cbc88e )
by Joao
04:07
created

PdoPgsql   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 8
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
namespace ByJG\AnyDataset\Database;
4
5
use ByJG\AnyDataset\ConnectionManagement;
6
7
class PdoPgsql extends DBPDODriver
8
{
9
10
    public function __construct(ConnectionManagement $connMngt)
11
    {
12
        parent::__construct($connMngt, null, [], []);
13
    }
14
}
15