Completed
Push — master ( 2eb9e0...6fec5f )
by Daniel
02:30
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.