psalm fixes

This commit is contained in:
Robin Appelman 2022-04-08 17:25:10 +02:00
commit 3d85afde98
6 changed files with 19 additions and 15 deletions

View file

@ -41,14 +41,15 @@ class Operator {
* The type of operation, one of the Operator::OPERATION_* constants
*/
public $type;
/**
* @var (Literal|SearchPropDefinition|Operation)[]
* @var (Literal|\SearchDAV\Backend\SearchPropertyDefinition|Operator)[]
*
* The list of arguments for the operation
*
* - SearchPropDefinition: property for comparison
* - Literal: literal value for comparison
* - Operation: nested operation for and/or/not operations
* - Operator: nested operation for and/or/not operations
*
* Which type and what number of argument an Operator takes depends on the operator type.
*/