1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-12 09:44:38 +02:00

Minor phpdoc adjustment to Fieldtype and FieldtypeMulti classes

This commit is contained in:
Ryan Cramer
2020-10-02 11:58:00 -04:00
parent 96b263fd2e
commit 33cbec49c1
2 changed files with 2 additions and 2 deletions

View File

@@ -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
*
*/

View File

@@ -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) {