Completed
Push — fm-support ( 67f3c2...5f26cf )
by Vladimir
04:53
created
src/Model/BaseModel.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
      * @param string          $table            The database table that will be searched
253 253
      * @param string|string[] $select           The column that will be returned
254 254
      *
255
-     * @return mixed[] A list of values, if $select was only one column, or the return array of $db->query if it was more
255
+     * @return integer[] A list of values, if $select was only one column, or the return array of $db->query if it was more
256 256
      */
257 257
     protected static function fetchIds($additional_query = '', $types = '', $params = array(), $table = "", $select = 'id')
258 258
     {
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
      * @param array|mixed     $possible_values  List of acceptable values
293 293
      * @param string          $type             The type of the values in $possible_values (can be `s`, `i`, `d` or `b`)
294 294
      * @param bool            $negate           Whether to search if the value of $column does NOT belong to the $possible_values array
295
-     * @param string|string[] $select           The name of the column(s) that the returned array should contain
295
+     * @param string $select           The name of the column(s) that the returned array should contain
296 296
      * @param string          $additional_query Additional parameters to be passed to the MySQL query (e.g. `WHERE id = 5`)
297 297
      * @param string          $table            The database table which will be used for queries
298 298
      *
Please login to merge, or discard this patch.