ManageFields   A
last analyzed

Complexity

Total Complexity 6

Size/Duplication

Total Lines 32
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 32
rs 10
c 0
b 0
f 0
wmc 6
lcom 0
cbo 0

6 Methods

Rating   Name   Duplication   Size   Complexity  
A fieldFlags() 0 4 1
A fieldLen() 0 4 1
A fieldName() 0 4 1
A fieldSeek() 0 4 1
A fieldTable() 0 4 1
A fieldType() 0 4 1
1
<?php
2
3
namespace Mattbit\MysqlCompat\BridgeComponents;
4
5
trait ManageFields
6
{
7
    public function fieldFlags()
8
    {
9
        // @todo
10
    }
11
12
    public function fieldLen()
13
    {
14
        // @todo
15
    }
16
17
    public function fieldName()
18
    {
19
        // @todo
20
    }
21
22
    public function fieldSeek()
23
    {
24
        // @todo
25
    }
26
27
    public function fieldTable()
28
    {
29
        // @todo
30
    }
31
32
    public function fieldType()
33
    {
34
        // @todo
35
    }
36
}
37