Test Setup Failed
Push — master ( f6b651...4d94b0 )
by Jarrett
04:09
created

MySQL   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 4
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 22
rs 10

4 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A getCharacterSet() 0 4 1
A getPrimaryKey() 0 4 1
A getColumns() 0 4 1
1
<?php namespace SearchReplace\DatabaseTypes;
2
3
class MySQL
4
{
5
    public function __construct()
6
    {
7
8
    }
9
10
    public function getCharacterSet()
11
    {
12
13
    }
14
15
    public function getPrimaryKey()
16
    {
17
18
    }
19
20
    public function getColumns()
21
    {
22
23
    }
24
}
25