Completed
Pull Request — develop (#209)
by Felipe
26:08 queued 36s
created
src/traits/AdminTrait.php 1 patch
Doc Comments   +16 added lines, -2 removed lines patch added patch discarded remove patch
@@ -542,8 +542,6 @@  discard block
 block discarded – undo
542 542
      * persist changes in autovacuum settings.
543 543
      *
544 544
      * @param mixed $type
545
-     * @param mixed $confirm
546
-     * @param mixed $msg
547 545
      */
548 546
     public function doEditAutovacuum($type)
549 547
     {
@@ -688,6 +686,10 @@  discard block
 block discarded – undo
688 686
         $this->_printAutoVacuumConf($data, $type);
689 687
     }
690 688
 
689
+    /**
690
+     * @param string $action
691
+     * @param string $type
692
+     */
691 693
     public function adminActions($action, $type)
692 694
     {
693 695
         if ('database' == $type) {
@@ -764,6 +766,9 @@  discard block
 block discarded – undo
764 766
         return true;
765 767
     }
766 768
 
769
+    /**
770
+     * @param string $table_hidden_inputs
771
+     */
767 772
     private function _getReclusterConf($data, $type, $table_hidden_inputs)
768 773
     {
769 774
         if (!$data->hasRecluster()) {
@@ -923,11 +928,20 @@  discard block
 block discarded – undo
923 928
 
924 929
     abstract public function printTrail($trail = [], $do_print = true);
925 930
 
931
+    /**
932
+     * @param string $help
933
+     */
926 934
     abstract public function printTitle($title, $help = null, $do_print = true);
927 935
 
928 936
     abstract public function printMsg($msg, $do_print = true);
929 937
 
938
+    /**
939
+     * @param string $activetab
940
+     */
930 941
     abstract public function printTabs($tabs, $activetab, $do_print = true);
931 942
 
943
+    /**
944
+     * @param string $place
945
+     */
932 946
     abstract public function printTable(&$tabledata, &$columns, &$actions, $place, $nodata = '', $pre_fn = null);
933 947
 }
Please login to merge, or discard this patch.