Completed
Push — master ( 4076e7...56163a )
by Daniel
02:39
created
source/MySQLiAdvancedOutput.php 1 patch
Doc Comments   +9 added lines, -2 removed lines patch added patch discarded remove patch
@@ -797,7 +797,7 @@  discard block
 block discarded – undo
797 797
      * @param string $tableSource
798 798
      * @param array $details
799 799
      * @param array $features
800
-     * @return string|array
800
+     * @return null|string
801 801
      */
802 802
     private function setNeededField($tableSource, $details, $features)
803 803
     {
@@ -819,7 +819,7 @@  discard block
 block discarded – undo
819 819
      * @param string $tblName
820 820
      * @param array $dtls
821 821
      * @param array $features
822
-     * @return string|array
822
+     * @return string
823 823
      */
824 824
     private function setNeededFieldByType($tblName, $dtls, $features)
825 825
     {
@@ -830,6 +830,9 @@  discard block
 block discarded – undo
830 830
         return $this->setNeededFieldKnown($tblName, $dtls, $features);
831 831
     }
832 832
 
833
+    /**
834
+     * @param string $tblName
835
+     */
833 836
     private function setNeededFieldKnown($tblName, $dtls, $features)
834 837
     {
835 838
         $iar      = $this->handleFeatures($dtls['COLUMN_NAME'], $features);
@@ -845,6 +848,10 @@  discard block
 block discarded – undo
845 848
         return $this->getFieldCompletionType($dtls) . $sReturn;
846 849
     }
847 850
 
851
+    /**
852
+     * @param string $tableSource
853
+     * @param string $fieldLabel
854
+     */
848 855
     private function setNeededFieldFinal($tableSource, $details, $features, $fieldLabel)
849 856
     {
850 857
         $sReturn = $this->setField($tableSource, $details, $features, $fieldLabel);
Please login to merge, or discard this patch.
source/MySQLiByDanielGPstructures.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -190,6 +190,8 @@  discard block
 block discarded – undo
190 190
     /**
191 191
      * Return various informations (from predefined list) from the MySQL server
192 192
      *
193
+     * @param string $returnChoice
194
+     * @param string $returnType
193 195
      * @return int|array
194 196
      */
195 197
     private function getMySQLlistMultiple($returnChoice, $returnType, $additionalFeatures = null)
@@ -304,7 +306,7 @@  discard block
 block discarded – undo
304 306
      *
305 307
      * @param array $entryArray
306 308
      * @param string $referenceTable
307
-     * @return array
309
+     * @return string
308 310
      */
309 311
     private function setArrayToFilterValues($entryArray, $referenceTable = '')
310 312
     {
Please login to merge, or discard this patch.
source/DomCssAndJavascriptByDanielGP.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -225,6 +225,9 @@
 block discarded – undo
225 225
         return '<script type="text/javascript">' . file_get_contents($jsFileName, true) . '</script>';
226 226
     }
227 227
 
228
+    /**
229
+     * @param integer $groupCounter
230
+     */
228 231
     protected function updateDivTitleName($rememberGroupVal, $groupCounter)
229 232
     {
230 233
         $jsContent = '$(document).ready(function() { $("#tab_'
Please login to merge, or discard this patch.