Skip to content

Commit 3f6f76f

Browse files
committed
fixes #1015
1 parent 295c4c6 commit 3f6f76f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

MysqliDb.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -790,11 +790,11 @@ public function getOne($tableName, $columns = '*')
790790
/**
791791
* A convenient SELECT COLUMN function to get a single column value from one row
792792
*
793-
* @param string $tableName The name of the database table to work with.
794-
* @param string $column The desired column
795-
* @param int $limit Limit of rows to select. Use null for unlimited..1 by default
793+
* @param string $tableName The name of the database table to work with.
794+
* @param string $column The desired column
795+
* @param int|null $limit Limit of rows to select. Use null for unlimited. 1 by default
796796
*
797-
* @return mixed Contains the value of a returned column / array of values
797+
* @return mixed Contains the value of a returned column / array of values
798798
* @throws Exception
799799
*/
800800
public function getValue($tableName, $column, $limit = 1)

0 commit comments

Comments
 (0)