Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
36 | public function alterTable_etablissement() |
||
37 | { |
||
38 | global $xoopsDB; |
||
39 | $tbl = $xoopsDB->prefix('extcal_etablissement'); |
||
40 | |||
41 | $sql = <<<__sql__ |
||
42 | ALTER TABLE `{$tbl}` |
||
43 | CHANGE `desc` `description` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL; |
||
44 | __sql__; |
||
45 | |||
46 | $xoopsDB->queryF($sql); |
||
47 | //echo "<hr>{$sql}<hr>"; |
||
54 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.