This commit is contained in:
James Cole
2023-07-29 06:52:21 +02:00
parent 1a1b0ee27d
commit fe4e00dc5c
5 changed files with 24 additions and 15 deletions

View File

@@ -49,6 +49,12 @@ trait CollectorProperties
private array $postFilters;
private HasMany $query;
private array $stringFields;
private int $total;
private ?User $user;
/*
* This array is used to collect ALL tags the user may search for (using 'setTags').
* This way the user can call 'setTags' multiple times and get a joined result.
*
*/
private array $tags;
private int $total;
private ?User $user;
}