@@ -266,7 +266,7 @@ |
||
266 | 266 | /** |
267 | 267 | * Show confirmation of drop and perform actual drop. |
268 | 268 | * |
269 | - * @param mixed $confirm |
|
269 | + * @param boolean $confirm |
|
270 | 270 | */ |
271 | 271 | public function doDrop($confirm) |
272 | 272 | { |
@@ -266,7 +266,7 @@ |
||
266 | 266 | /** |
267 | 267 | * Show confirmation of drop and perform actual drop. |
268 | 268 | * |
269 | - * @param mixed $confirm |
|
269 | + * @param boolean $confirm |
|
270 | 270 | */ |
271 | 271 | public function doDrop($confirm) |
272 | 272 | { |
@@ -297,6 +297,11 @@ |
||
297 | 297 | |
298 | 298 | abstract public function execute($sql); |
299 | 299 | |
300 | + /** |
|
301 | + * @param string $obj_type |
|
302 | + * @param string $table |
|
303 | + * @param string $comment |
|
304 | + */ |
|
300 | 305 | abstract public function setComment($obj_type, $obj_name, $table, $comment, $basetype = null); |
301 | 306 | |
302 | 307 | abstract public function selectSet($sql); |
@@ -1525,6 +1525,12 @@ discard block |
||
1525 | 1525 | |
1526 | 1526 | abstract public function execute($sql); |
1527 | 1527 | |
1528 | + /** |
|
1529 | + * @param string $obj_type |
|
1530 | + * @param string $obj_name |
|
1531 | + * @param string $comment |
|
1532 | + * @param boolean $basetype |
|
1533 | + */ |
|
1528 | 1534 | abstract public function setComment($obj_type, $obj_name, $table, $comment, $basetype = null); |
1529 | 1535 | |
1530 | 1536 | abstract public function selectSet($sql); |
@@ -1541,9 +1547,15 @@ discard block |
||
1541 | 1547 | |
1542 | 1548 | abstract public function delete($table, $conditions, $schema = ''); |
1543 | 1549 | |
1550 | + /** |
|
1551 | + * @param boolean $arr |
|
1552 | + */ |
|
1544 | 1553 | abstract public function fieldArrayClean(&$arr); |
1545 | 1554 | |
1546 | 1555 | abstract public function hasCreateFieldWithConstraints(); |
1547 | 1556 | |
1557 | + /** |
|
1558 | + * @param string $table |
|
1559 | + */ |
|
1548 | 1560 | abstract public function getAttributeNames($table, $atts); |
1549 | 1561 | } |
@@ -552,11 +552,19 @@ |
||
552 | 552 | |
553 | 553 | abstract public function execute($sql); |
554 | 554 | |
555 | + /** |
|
556 | + * @param string $obj_type |
|
557 | + * @param string $table |
|
558 | + * @param string $comment |
|
559 | + */ |
|
555 | 560 | abstract public function setComment($obj_type, $obj_name, $table, $comment, $basetype = null); |
556 | 561 | |
557 | 562 | abstract public function selectSet($sql); |
558 | 563 | |
559 | 564 | abstract public function clean(&$str); |
560 | 565 | |
566 | + /** |
|
567 | + * @param boolean $arr |
|
568 | + */ |
|
561 | 569 | abstract public function fieldArrayClean(&$arr); |
562 | 570 | } |