From 2996260e41e8ca019dec68077263437c60ed3cb1 Mon Sep 17 00:00:00 2001 From: Eldad Fux Date: Tue, 27 Oct 2020 21:34:27 +0200 Subject: [PATCH] Added missing docs --- src/Appwrite/Extend/PDOStatement.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Appwrite/Extend/PDOStatement.php b/src/Appwrite/Extend/PDOStatement.php index a000bdedca..46c33f6545 100644 --- a/src/Appwrite/Extend/PDOStatement.php +++ b/src/Appwrite/Extend/PDOStatement.php @@ -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();