Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
RivenSkaye committed Jul 24, 2023
1 parent 295c4c6 commit 3f6f76f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions MysqliDb.php
Expand Up @@ -790,11 +790,11 @@ public function getOne($tableName, $columns = '*')
/**
* A convenient SELECT COLUMN function to get a single column value from one row
*
* @param string $tableName The name of the database table to work with.
* @param string $column The desired column
* @param int $limit Limit of rows to select. Use null for unlimited..1 by default
* @param string $tableName The name of the database table to work with.
* @param string $column The desired column
* @param int|null $limit Limit of rows to select. Use null for unlimited. 1 by default
*
* @return mixed Contains the value of a returned column / array of values
* @return mixed Contains the value of a returned column / array of values
* @throws Exception
*/
public function getValue($tableName, $column, $limit = 1)
Expand Down

0 comments on commit 3f6f76f

Please sign in to comment.