From 33cbec49c1c4641861f38386d8cb08ce3d1e8556 Mon Sep 17 00:00:00 2001 From: Ryan Cramer Date: Fri, 2 Oct 2020 11:58:00 -0400 Subject: [PATCH] Minor phpdoc adjustment to Fieldtype and FieldtypeMulti classes --- wire/core/Fieldtype.php | 2 +- wire/core/FieldtypeMulti.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wire/core/Fieldtype.php b/wire/core/Fieldtype.php index de6ebc1f..d55b0495 100644 --- a/wire/core/Fieldtype.php +++ b/wire/core/Fieldtype.php @@ -708,7 +708,7 @@ abstract class Fieldtype extends WireData implements Module { * @param string $subfield Name of the subfield (typically 'data', unless selector explicitly specified another) * @param string $operator The comparison operator * @param mixed $value The value to find - * @return DatabaseQuery $query + * @return PageFinderDatabaseQuerySelect|DatabaseQuerySelect $query * @throws WireException * */ diff --git a/wire/core/FieldtypeMulti.php b/wire/core/FieldtypeMulti.php index beeab6fe..4a987451 100644 --- a/wire/core/FieldtypeMulti.php +++ b/wire/core/FieldtypeMulti.php @@ -865,7 +865,7 @@ abstract class FieldtypeMulti extends Fieldtype { * @param string $subfield Name of the field (typically 'data', unless selector explicitly specified another) * @param string $operator The comparison operator * @param mixed $value The value to find - * @return DatabaseQuery $query + * @return PageFinderDatabaseQuerySelect|DatabaseQuerySelect $query * */ public function getMatchQuery($query, $table, $subfield, $operator, $value) {