Conditions | 8 |
Paths | 128 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | public function fromMySqlDescription($indexField) { |
||
25 | $this->Seq_in_index = isset($indexField['Seq_in_index']) ? $indexField['Seq_in_index'] : null; |
||
26 | $this->Column_name = isset($indexField['Column_name']) ? $indexField['Column_name'] : null; |
||
27 | $this->Collation = isset($indexField['Collation']) ? $indexField['Collation'] : null; |
||
28 | $this->Cardinality = isset($indexField['Cardinality']) ? $indexField['Cardinality'] : null; |
||
29 | $this->Sub_part = isset($indexField['Sub_part']) ? $indexField['Sub_part'] : null; |
||
30 | $this->Null = isset($indexField['Null']) ? $indexField['Null'] : null; |
||
31 | $this->Expression = isset($indexField['Expression']) ? $indexField['Expression'] : null; |
||
32 | |||
33 | return $this; |
||
34 | } |
||
37 |