Total Complexity | 4 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | trait DatabaseMetadatas { |
||
17 | |||
18 | 4 | public function getTablesName() { |
|
19 | 4 | return $this->wrapperObject->getTablesName (); |
|
20 | } |
||
21 | |||
22 | 1 | public function getPrimaryKeys($tableName) { |
|
23 | 1 | return $this->wrapperObject->getPrimaryKeys ( $tableName ); |
|
24 | } |
||
25 | |||
26 | 1 | public function getFieldsInfos($tableName) { |
|
27 | 1 | return $this->wrapperObject->getFieldsInfos ( $tableName ); |
|
28 | } |
||
29 | |||
30 | 1 | public function getForeignKeys($tableName, $pkName, $dbName = null) { |
|
32 | } |
||
33 | } |
||
34 | |||
35 |