From 259247464a61a60a366cdfd3c8b9881a4d223a94 Mon Sep 17 00:00:00 2001 From: "Daniel J. Summers" Date: Tue, 4 Jun 2024 21:36:36 -0400 Subject: [PATCH] Even more debug --- src/DocumentList.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/DocumentList.php b/src/DocumentList.php index 02ada88..de3dd32 100644 --- a/src/DocumentList.php +++ b/src/DocumentList.php @@ -50,6 +50,7 @@ class DocumentList if ($debug) echo '*** CALLED GENERATOR ***'; if ($this->result) { + if ($debug) echo 'There are results'; while ($row = $this->result->fetch(PDO::FETCH_ASSOC)) { if ($debug) echo "
Returning an item\n
"; yield $this->mapper->map($row);