Passed
Push — develop ( d51928...4c214f )
by Felipe
31:34 queued 23:49
created
src/controllers/TypesController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -266,7 +266,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/controllers/ViewsController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -266,7 +266,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/database/databasetraits/FtsTrait.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -297,6 +297,11 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/database/databasetraits/TriggerTrait.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -1525,6 +1525,12 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/database/databasetraits/ViewTrait.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -552,11 +552,19 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.