MySQL   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Importance

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

4 Methods

Rating   Name   Duplication   Size   Complexity  
A getColumns() 0 2 1
A getPrimaryKey() 0 2 1
A getCharacterSet() 0 2 1
A __construct() 0 2 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