1
0
Fork 0
mirror of synced 2024-06-28 19:20:25 +12:00

Added missing docs

This commit is contained in:
Eldad Fux 2020-10-27 21:34:27 +02:00
parent 8bbdac232d
commit 2996260e41

View file

@ -98,6 +98,14 @@ class PDOStatement extends PDOStatementNative
return $result;
}
/**
* Fetch All
*
* @param int $fetch_style
* @param mixed $fetch_args
*
* @return array|false
*/
public function fetchAll(int $fetch_style = PDO::FETCH_BOTH, mixed ...$fetch_args)
{
$result = $this->PDOStatement->fetchAll();