Completed
Push — master ( 499792...398ea7 )
by Daniel
09:33
created
source/MySQLiByDanielGP.php 1 patch
Doc Comments   +10 added lines, -8 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
     /**
73 73
      * returns a list of MySQL databases
74 74
      *
75
-     * @return array
75
+     * @return string
76 76
      */
77 77
     protected function getMySQLactiveDatabases()
78 78
     {
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
     /**
83 83
      * returns a list of active MySQL engines
84 84
      *
85
-     * @return array
85
+     * @return string
86 86
      */
87 87
     protected function getMySQLactiveEngines()
88 88
     {
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
     /**
111 111
      * returns the list of all MySQL global variables
112 112
      *
113
-     * @return array
113
+     * @return string
114 114
      */
115 115
     protected function getMySQLglobalVariables()
116 116
     {
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
     /**
121 121
      * returns a list of MySQL indexes (w. choice of to choose any combination of db/table/column)
122 122
      *
123
-     * @return array
123
+     * @return string
124 124
      */
125 125
     protected function getMySQLlistColumns($filterArray = null)
126 126
     {
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
     /**
131 131
      * returns a list of MySQL databases (w. choice of exclude/include the system ones)
132 132
      *
133
-     * @return array
133
+     * @return string
134 134
      */
135 135
     protected function getMySQLlistDatabases($excludeSystemDbs = true)
136 136
     {
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
     /**
141 141
      * returns a list of MySQL engines (w. choice of return only the active ones)
142 142
      *
143
-     * @return array
143
+     * @return string
144 144
      */
145 145
     protected function getMySQLlistEngines($onlyActiveOnes = true)
146 146
     {
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
     /**
151 151
      * returns a list of MySQL indexes (w. choice of to choose any combination of db/table/column)
152 152
      *
153
-     * @return array
153
+     * @return string
154 154
      */
155 155
     protected function getMySQLlistIndexes($filterArray = null)
156 156
     {
@@ -160,6 +160,8 @@  discard block
 block discarded – undo
160 160
     /**
161 161
      * Return various informations (from predefined list) from the MySQL server
162 162
      *
163
+     * @param string $returnChoice
164
+     * @param string $returnType
163 165
      * @return string
164 166
      */
165 167
     private function getMySQLlistMultiple($returnChoice, $returnType, $additionalFeatures = null)
@@ -513,7 +515,7 @@  discard block
 block discarded – undo
513 515
      *
514 516
      * @param array $entryArray
515 517
      * @param string $referenceTable
516
-     * @return array
518
+     * @return string
517 519
      */
518 520
     private function setArrayToFilterValues($entryArray, $referenceTable = '')
519 521
     {
Please login to merge, or discard this patch.