From 8a4da2bbb79e15d5e9ab7b892474e2992f52cbe1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Tamarelle?= Date: Fri, 17 Nov 2023 15:51:48 +0100 Subject: [PATCH] PHPORM-6 Fix doc Builder::timeout applies to find query, not the cursor --- src/Query/Builder.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Query/Builder.php b/src/Query/Builder.php index 82ba9d09a..3fc9c1b33 100644 --- a/src/Query/Builder.php +++ b/src/Query/Builder.php @@ -80,7 +80,7 @@ class Builder extends BaseBuilder public $projections; /** - * The cursor timeout value. + * The maximum amount of seconds to allow the query to run. * * @var int */ @@ -189,7 +189,7 @@ public function project($columns) } /** - * Set the cursor timeout in seconds. + * The maximum amount of seconds to allow the query to run. * * @param int $seconds *