From 82238978c74d121a740b892da5235aecf75c886a Mon Sep 17 00:00:00 2001 From: rotimi Date: Mon, 5 Feb 2024 02:16:57 -0700 Subject: [PATCH] PHP 8.1 Refactorings --- src/GDAO/Model/RecordInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GDAO/Model/RecordInterface.php b/src/GDAO/Model/RecordInterface.php index fab8bd2..1e2bb8e 100644 --- a/src/GDAO/Model/RecordInterface.php +++ b/src/GDAO/Model/RecordInterface.php @@ -193,7 +193,7 @@ public function getPrimaryVal(): mixed; * Tells if the record, or a particular table-column in the record, has * changed from its initial value. * - * @param null|string $col The table-column name. + * @param null|string $col The table-column name. If null, check all column values in the record for changes, if non-null, check only specified column for change * * @return null|bool Returns null if the table-column name does not exist, * true if the data is changed, false if not changed.