Total Complexity | 5 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | class Schema extends \yii\db\Schema |
||
21 | { |
||
22 | // Public Methods |
||
23 | // ========================================================================= |
||
24 | |||
25 | /** |
||
26 | * @inheritdoc |
||
27 | */ |
||
28 | public function getTableNames($schema = '', $refresh = false) |
||
29 | { |
||
30 | return parent::getTableNames($schema, $refresh); |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * @inheritdoc |
||
35 | */ |
||
36 | public function quoteSimpleTableName($name = '') |
||
37 | { |
||
38 | return parent::quoteSimpleTableName($name); |
||
39 | } |
||
40 | |||
41 | /** |
||
42 | * @inheritdoc |
||
43 | */ |
||
44 | public function loadTableSchema($name = '') |
||
47 | } |
||
48 | |||
49 | /** |
||
50 | * @inheritdoc |
||
51 | */ |
||
52 | public function findTableNames($schema = '') { |
||
59 | } |
||
60 | } |
||
61 |